summaryrefslogtreecommitdiff
path: root/.i3/scripts/lock.sh
blob: 0377cb1643e93d1542bd3c0055831cb572c562fb (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

icon="$HOME/Pictures/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"
i3lock -i "$tmpbg"