You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
ICON=$HOME/Pictures/Icons/icon.png
|
|
TMPBG=/tmp/screen.png
|
|
scrot $TMPBG
|
|
convert $TMPBG -scale 5% -scale 2000% $TMPBG
|
|
convert $TMPBG $ICON -gravity center -composite -matte $TMPBG
|
|
i3lock -i $TMPBG
|
|
rm /tmp/screen.png
|