mirror of
https://github.com/Adam-Ant/dotfiles
synced 2024-11-05 09:06:23 +00:00
37 lines
841 B
Bash
Executable File
37 lines
841 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
icon="$HOME/.config/i3/lock.png"
|
|
tmpbg='/tmp/lock.png'
|
|
|
|
(( $# )) && { icon=$1; }
|
|
|
|
# screenshot
|
|
scrot "$tmpbg"
|
|
|
|
PX=0
|
|
PY=0
|
|
# lockscreen image info
|
|
R=$(file $icon | grep -o '[0-9]* x [0-9]*')
|
|
RX=$(echo $R | cut -d' ' -f 1)
|
|
RY=$(echo $R | cut -d' ' -f 3)
|
|
|
|
RES=$(xrandr --query | grep 'DP-1' | cut -f4 -d' ')
|
|
|
|
# monitor position/offset
|
|
SRX=$(echo $RES | cut -d'x' -f 1) # x pos
|
|
SRY=$(echo $RES | cut -d'x' -f 2 | cut -d'+' -f 1) # y pos
|
|
SROX=$(echo $RES | cut -d'x' -f 2 | cut -d'+' -f 2) # x offset
|
|
SROY=$(echo $RES | cut -d'x' -f 2 | cut -d'+' -f 3) # y offset
|
|
PX=$(($SROX + $SRX/2 - $RX/2))
|
|
PY=$(($SROY + $SRY/2 - $RY/2))
|
|
|
|
|
|
# pixelize and add lock icon
|
|
convert $tmpbg -scale 5% -scale 2000% $tmpbg
|
|
convert $tmpbg $icon -geometry +$PX+$PY -composite -matte $tmpbg
|
|
|
|
|
|
i3lock -i "$tmpbg" -n -e
|
|
|
|
rm "$tmpbg"
|