dotfiles
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.
df/.config/i3/scripts/lock.sh

10 lines
127 B

3 years ago
#!/bin/sh
revert() {
xset dpms 0 0 0
}
trap revert HUP INT TERM
xset +dpms dpms 15 15 15
betterlockscreen -l -- -n -e
3 years ago
revert