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