mirror of
https://github.com/Rushilwiz/rice.git
synced 2025-04-03 20:00:20 -04:00
12 lines
170 B
Bash
Executable File
12 lines
170 B
Bash
Executable File
#!/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
|