add i3 configuration

This commit is contained in:
2022-06-07 10:54:04 +02:00
parent 395e6b1576
commit 6139413869
5 changed files with 294 additions and 3 deletions

31
tree/.local/bin/i3lock-cool Executable file
View File

@ -0,0 +1,31 @@
#!/bin/sh
set -x
# check if i3lock is running
if ps -e | grep " i3lock$"; then
echo "i3lock is already running!"
exit 1
fi
OPTIONAL_CMDS="scrot lockscreen-blur"
for CMD in $OPTIONAL_CMDS; do
echo "checking $CMD"
if ! command -v "$CMD" &> /dev/null
then
echo "$CMD could not be found, falling back to basic mode."
i3lock -c 302f3b "$@"
exit 0
fi
done
TMP_IMG="/tmp/lock.png"
scrot - | lockscreen-blur -o "$TMP_IMG" -b 20 --stamp ~/.config/sway/ferris-stamp.png
i3lock -nef --image="$TMP_IMG" "$@"
rm "$TMP_IMG"