change wallpaper

This commit is contained in:
2026-06-15 02:07:53 +07:00
parent c5ac8a6d05
commit e55ebcc8ed
29 changed files with 1986 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# simple screenlocker using i3lock that creates ablurred screenshot to overlay
PICTURE=/tmp/i3lock.png
SCREENSHOT="scrot -z $PICTURE"
BLUR="5x4"
$SCREENSHOT
magick $PICTURE -blur $BLUR $PICTURE
i3lock -i $PICTURE
shred $PICTURE
rm $PICTURE