mirror of
https://github.com/alrayyes/dwm
synced 2023-11-14 15:56:31 +00:00
12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NUMBER_OF_SCREENS="$(xrandr | grep -c '\*')"
|
|
|
|
if [ "$NUMBER_OF_SCREENS" -gt 1 ]
|
|
then
|
|
maim ~/.cache/lock.png
|
|
corrupter ~/.cache/lock.png ~/.cache/lock.png
|
|
fi
|
|
|
|
i3lock -e -b -f -i ~/.cache/lock.png
|