This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

10
bin/int_display_refresh-rate Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
LOW="xrandr --output eDP-1 --mode 2560x1600 --rate 60"
HIGH="xrandr --output eDP-1 --mode 2560x1600 --rate 165"
CHOICE=$(printf "165Hz\n60Hz" | dmenu -c -i -l 2 -p "choose refresh rate:")
case $CHOICE in
"165Hz")
$HIGH;;
"60Hz")
$LOW;;
esac