diff options
author | Philipp Hemmelmayr <fips.hem@gmail.com> | 2018-04-26 11:27:15 +0200 |
---|---|---|
committer | Pavan Jadhaw <pavanjadhaw96@gmail.com> | 2018-04-26 14:57:15 +0530 |
commit | 368b30495d2e341875b863cc54291cd18ca3eeff (patch) | |
tree | e562f2fd6d4a6a40907988da4e46cdfa2443c83d | |
parent | 95edc9885212fa80e90578c80eb96fa1631000e2 (diff) |
add nofork argument when locking without suspend (#48)
-rwxr-xr-x | betterlockscreen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/betterlockscreen b/betterlockscreen index 51acd92..bf94723 100755 --- a/betterlockscreen +++ b/betterlockscreen @@ -52,8 +52,7 @@ lock() { --ringvercolor=$foreground --ringwrongcolor=$foreground --indpos="x+280:h-70" \ --radius=20 --ring-width=4 --veriftext="" --wrongtext="" \ --verifcolor="$foreground" --timecolor="$foreground" --datecolor="$foreground" \ - --noinputtext="" \ - --force-clock + --noinputtext="" --force-clock $lockargs } postlock() { @@ -171,6 +170,7 @@ case "$1" in ;; -l | --lock) + lockargs="-n" case "$2" in "") # default lockscreen |