Initial commit

This commit is contained in:
ineanto 2023-04-28 22:44:39 +02:00
commit 22bc368133
20 changed files with 1145 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
PICTURE=/tmp/i3lock.png
SCREENSHOT="scrot $PICTURE"
BLUR="5x4"
$SCREENSHOT
convert $PICTURE -blur $BLUR $PICTURE
i3lock -i $PICTURE
rm $PICTURE