mirror of
https://github.com/JonasunderscoreJones/i3-dotfiles.git
synced 2025-10-23 07:59:19 +02:00
11 lines
170 B
Bash
Executable file
11 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
|