This commit is contained in:
Daniel Fichtinger 2024-10-28 23:34:48 -04:00
commit 1eab36a376
56 changed files with 7798 additions and 0 deletions

11
.config/i3/scripts/blur-lock Executable file
View file

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