added support for i3lock-fancy-multimonitor

This commit is contained in:
Ryan Kes 2019-03-23 12:25:50 +01:00
parent f87cdd1bbc
commit c4c393bf98
2 changed files with 11 additions and 3 deletions

9
lock
View file

@ -1,3 +1,10 @@
#!/bin/sh
i3lock -e -b -f -i ~/.cache/lock.png
if [ -e /usr/bin/i3lock-fancy ]
then
i3lock-fancy -p -n
elif [ -e /usr/bin/i3lock ]
then
i3lock -e -b -f -i ~/.cache/lock.png
fi