change manythings

This commit is contained in:
2026-06-25 11:33:22 +07:00
parent b9e75b0ff7
commit 3ed4afab73
29 changed files with 1745 additions and 14 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