mirror of
https://github.com/alrayyes/dwm
synced 2023-11-14 15:56:31 +00:00
11 lines
149 B
Bash
Executable File
11 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|