Updated lockselect() function and argument -s (#69)

You can just remove second argument in lockselect() function and execute suspend command directly from the case.
This commit is contained in:
dunCan 2018-08-13 04:53:40 +01:00 committed by Pavan Jadhaw
parent 2753996e88
commit 441d091da6

View file

@ -93,28 +93,28 @@ lockselect() {
"")
# default lockscreen
prelock
lock "$l_resized" && $2
lock "$l_resized"
postlock
;;
dim)
# lockscreen with dimmed background
prelock
lock "$l_dim" && $2
lock "$l_dim"
postlock
;;
blur)
# set lockscreen with blurred background
prelock
lock "$l_blur" && $2
lock "$l_blur"
postlock
;;
dimblur)
# set lockscreen with dimmed + blurred background
prelock
lock "$l_dimblur" && $2
lock "$l_dimblur"
postlock
;;
esac
@ -221,7 +221,8 @@ case "$1" in
;;
-s | --suspend)
lockselect "$2" "systemctl suspend"
lockselect "$2"
systemctl suspend
;;
-w | --wall)