mirror of
https://github.com/10h30/endeavouros-i3wm-setup.git
synced 2026-07-11 10:45:54 +09:00
12 lines
159 B
Bash
12 lines
159 B
Bash
#!/bin/bash
|
|
|
|
PICTURE=/tmp/i3lock.png
|
|
SCREENSHOT="scrot $PICTURE"
|
|
|
|
BLUR="5x4"
|
|
|
|
$SCREENSHOT
|
|
convert $PICTURE -blur $BLUR $PICTURE
|
|
i3lock -i $PICTURE
|
|
rm $PICTURE
|