dotfiles/i3/scripts/i3lock.sh

12 lines
266 B
Bash
Raw Normal View History

2017-09-20 17:23:24 +02:00
#!/usr/bin/env bash
icon="$HOME/.config/i3/icons/lock.png"
tmpbg='/tmp/screen.png'
(( $# )) && { icon=$1; }
scrot "$tmpbg"
convert "$tmpbg" -scale 10% -scale 1000% "$tmpbg"
convert "$tmpbg" "$icon" -gravity center -composite -matte "$tmpbg"
2018-07-02 22:16:18 +02:00
i3lock -f -i "$tmpbg"