From c276923631e683e2ebc7a712fb794c0577765dba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 9 Sep 2017 14:12:38 +0200 Subject: [PATCH] Fix screen locking --- i3/scripts/i3exit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/i3/scripts/i3exit b/i3/scripts/i3exit index ee65f01..edb87b1 100755 --- a/i3/scripts/i3exit +++ b/i3/scripts/i3exit @@ -5,7 +5,7 @@ _logfile="$LOGDIR/i3/i3exit.log" LOCKSCREEN="$LIBDIR/wallpaper/lockscreen" -_fallback_color=000000 +_fallback_color="000000" touch "$_logfile" @@ -19,10 +19,10 @@ lock() { if [[ -f "$LOCKSCREEN" ]] ; then i3lock --nofork --show-failed-attempts --ignore-empty-password \ - --pointer win --image "$LOCKSCREEN" + --pointer win --image "$LOCKSCREEN" & else i3lock --nofork --show-failed-attempts --ignore-empty-password \ - --color "$_fallback_color" + --color "$_fallback_color" & fi }