filen1
Results
1
comments of
filen1
Here is a script to toggle for anyone else who would like it: ``` #!/bin/bash CONFIG_FILE="$HOME/.config/MangoHud/MangoHud.conf" FPS_HIGH=144 FPS_LOW=10 if grep -q "fps_limit=$FPS_HIGH" "$CONFIG_FILE"; then sed -i "s/fps_limit=$FPS_HIGH/fps_limit=$FPS_LOW/" "$CONFIG_FILE" notify-send -t...