diff options
author | David Phillips <david@sighup.nz> | 2017-04-20 16:19:40 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-04-20 16:19:40 +1200 |
commit | 4a235fbf650ac10fd1e3e2994e7c6cb2d043a2b7 (patch) | |
tree | 4410ce8c6a6e6e2650b138ab3dd376646efa9566 | |
parent | 9565e1e89bbef408d7bb5b588f25efb94490ed67 (diff) | |
download | dotfiles-4a235fbf650ac10fd1e3e2994e7c6cb2d043a2b7.tar.xz |
disable-fullscreen-lock: use key that doesn't interfere with games
-rwxr-xr-x | local/bin/disable-fullscreen-lock | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/local/bin/disable-fullscreen-lock b/local/bin/disable-fullscreen-lock index 1eff71c..487e33b 100755 --- a/local/bin/disable-fullscreen-lock +++ b/local/bin/disable-fullscreen-lock @@ -5,7 +5,7 @@ DELAY=300 while true; do activ_win_id=$(xprop -root _NET_ACTIVE_WINDOW) if result=$(xprop -id ${activ_win_id:40:9} | grep _NET_WM_STATE_FULLSCREEN); then - xdotool key Shift + xdotool key Print xset -dpms xset dpms fi |