6 lines
166 B
Bash
Executable file
6 lines
166 B
Bash
Executable file
#!/bin/sh
|
|
|
|
bg_file=/tmp/$(dd if=/dev/urandom bs=8 count=1 2> /dev/null | base32).png
|
|
scrot $bg_file -q 30
|
|
convert $bg_file -blur 8x8 $bg_file
|
|
exec i3lock -i $bg_file
|