home/.local/script/gamermode

23 lines
377 B
Plaintext
Raw Normal View History

2024-03-26 21:15:01 +00:00
#!/bin/bash
gamermode_off(){
notify-send -t 1600 'disabled gamermode' --icon=video-display
2024-07-01 08:49:26 +00:00
superctl start picom
# picom -b --log-file /var/log/picom.log --log-level INFO
2024-03-26 21:15:01 +00:00
}
gamermode_on(){
notify-send -t 1600 'enabled gamermode' --icon=video-display
2024-07-01 08:49:26 +00:00
superctl stop picom
# killall picom;
2024-03-26 21:15:01 +00:00
}
if [ `pgrep -x picom` ]; then
gamermode_on
else
gamermode_off
fi
exit