Last active
October 29, 2018 10:11
-
-
Save pimeys/a3b443670f88917d118a40ded15e7913 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
[[ -z "$(pgrep swaylock)" ]] || exit | |
[[ -z "$(pgrep convert)" ]] || exit | |
[[ -z "$(pgrep grim)" ]] || exit | |
TMPBG=/tmp/bg.png | |
grim $TMPBG | |
convert $TMPBG -scale 1% -scale 10000% $TMPBG | |
swaylock -i $TMPBG | |
rm -rf $TMPBG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment