From 43f15e92bdad50208ab085782900c0908701fc0f Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 23 Apr 2018 01:18:57 -0400 Subject: [PATCH] lock: Fix arguments for new version of i3lock --- .config/i3/lock.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/i3/lock.sh b/.config/i3/lock.sh index a411524..fd8ab4a 100755 --- a/.config/i3/lock.sh +++ b/.config/i3/lock.sh @@ -5,10 +5,11 @@ lock() { # needs i3lock-color i3lock --ignore-empty-password --clock --indicator -f --color=222222 \ - --textcolor=eeeeeeee --timecolor=eeeeeeee --datecolor=cccccccc \ + --verifcolor=eeeeeeee --wrongcolor=eeeeeeee \ + --timecolor=eeeeeeee --datecolor=cccccccc \ --ringcolor=333333ff --line-uses-ring --insidecolor=00000000 \ --insidewrongcolor=00000000 --insidevercolor=00000000 \ - --datestr="%Y-%m-%d $(hostname)" + --datestr="%Y-%m-%d $(hostname)" --pass-media-keys # will work with normal i3lock #i3lock -ec222222 -i /home/adam/.config/i3/LockScreen.png }