2018-08-05 18:53:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
icon=$HOME/img/misc/lock.png
|
|
|
|
tmpbg=/tmp/screenshot.png
|
|
|
|
|
2019-01-27 17:32:59 +01:00
|
|
|
test $# -eq 1 && icon=$1
|
2018-08-05 18:53:07 +02:00
|
|
|
|
|
|
|
scrot $tmpbg
|
|
|
|
gm convert $tmpbg -scale 10% -scale 1000% $tmpbg
|
2021-02-07 11:16:10 +01:00
|
|
|
gm composite -filter point -resize 48x48 -gravity center "$icon" $tmpbg $tmpbg
|
2019-08-29 15:39:55 +02:00
|
|
|
i3lock -u -i $tmpbg 2>/dev/null
|
2019-09-24 16:59:53 +02:00
|
|
|
rm $tmpbg
|