mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-09 18:49:45 +00:00
Issue-231: Add -v/--version (#246)
This commit is contained in:
parent
95bd5767ae
commit
6cc1fc16df
1 changed files with 20 additions and 0 deletions
|
@ -50,6 +50,9 @@ init_config () {
|
||||||
source "$USER_CONF"
|
source "$USER_CONF"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Please make sure to adjust this before release!
|
||||||
|
VERSION="@VERSION@"
|
||||||
|
|
||||||
# paths
|
# paths
|
||||||
CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/betterlockscreen"
|
CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/betterlockscreen"
|
||||||
CUR_DIR="$CACHE_DIR/current"
|
CUR_DIR="$CACHE_DIR/current"
|
||||||
|
@ -817,6 +820,23 @@ for arg in "$@"; do
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
-v | --version)
|
||||||
|
echo
|
||||||
|
echo "Version: $VERSION"
|
||||||
|
i3lock-color --version
|
||||||
|
convert --version
|
||||||
|
|
||||||
|
if [[ -x "$(command -v dunstctl)" ]]; then
|
||||||
|
dunstctl debug
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -x "$(command -v feh)" ]]; then
|
||||||
|
feh --version
|
||||||
|
fi
|
||||||
|
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
|
||||||
--)
|
--)
|
||||||
lockargs+=("${@:2}")
|
lockargs+=("${@:2}")
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue