mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 06:44:41 +01:00
29 lines
790 B
Bash
29 lines
790 B
Bash
#!/usr/bin/env bash
|
|
|
|
icon="$HOME/.config/i3/icons/lock.png"
|
|
tmpbg='/tmp/screen.png'
|
|
|
|
# detect whether spotify is running
|
|
isPlaying=$(~/.config/i3/scripts/spotify-cli.sh status);
|
|
|
|
scrot "$tmpbg"
|
|
convert "$tmpbg" -scale 10% -scale 1000% "$tmpbg"
|
|
convert "$tmpbg" "$icon" -gravity center -composite -matte "$tmpbg"
|
|
|
|
# Stop music if playing
|
|
~/.config/i3/scripts/spotify-cli.sh pause
|
|
|
|
# check whether the lockscreen is being activated because of a suspend
|
|
if [[ $* == *--suspend ]]; then
|
|
# if it is, simply lock without no-fork
|
|
i3lock -f -i "$tmpbg";
|
|
else
|
|
# if it isn't suspended, enable no-fork
|
|
i3lock -n -f -i "$tmpbg";
|
|
|
|
# if spotify was playing before we locked, resume.
|
|
if [ $isPlaying == "Playing" ]; then
|
|
~/.config/i3/scripts/spotify-cli.sh play
|
|
fi;
|
|
|
|
fi |