mirror of
https://github.com/CoolnsX/repos_scripts.git
synced 2025-12-20 07:15:20 +05:30
9 lines
185 B
Bash
Executable File
9 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
revert() {
|
|
xset dpms 0 0 0
|
|
}
|
|
trap revert HUP INT TERM
|
|
xset +dpms dpms 5 5 5
|
|
slock
|
|
revert
|