You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
256 B
21 lines
256 B
|
9 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
revert() {
|
||
|
|
xset dpms 0 0 0
|
||
|
|
}
|
||
|
|
trap revert HUP INT TERM
|
||
|
|
|
||
|
|
xset dpms 25 25 25
|
||
|
|
|
||
|
|
scrot /tmp/screen.png
|
||
|
|
convert /tmp/screen.png -scale 5% -scale 2000% /tmp/screen.png
|
||
|
|
i3lock -f -p win -i /tmp/screen.png
|
||
|
|
PID=$!
|
||
|
|
|
||
|
|
systemctl suspend
|
||
|
|
|
||
|
|
wait $PID
|
||
|
|
|
||
|
|
revert
|
||
|
|
|