From 8d19009dd7eb495d226f2960c637156c2243f7f9 Mon Sep 17 00:00:00 2001
From: CronyAkatsuki <crony@cronyakatsuki.xyz>
Date: Mon, 8 Jan 2024 16:23:36 +0100
Subject: [PATCH] Update the script.

---
 gaming-time | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/gaming-time b/gaming-time
index 52879ef..a6f8ecf 100755
--- a/gaming-time
+++ b/gaming-time
@@ -23,9 +23,9 @@ x11_off () {
   # start-program polybar top -r
   start-program xmobar ~/.config/xmobar/xmobarrc
   start-program unclutter --timeout 5
-  xrandr --output eDP --set TearFree on
+  toggle-xrandr on
   sleep 2
-  start-program trayer-srg --edge top --align right --widthtype request --padding 6 --iconspacing 7 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x303446 --height 27 -l
+  start-program trayer-srg --edge top --align right --widthtype request --padding 6 --iconspacing 7 --SetDockType true --SetPartialStrut true --expand true --monitor 1 --transparent true --alpha 0 --tint 0x303446 --height 24 -l
 }
 
 x11_on () {
@@ -34,14 +34,13 @@ x11_on () {
   kill-nicely xmobar
   kill-nicely trayer-srg
   kill-nicely unclutter
-  xrandr --output eDP --set TearFree off
+  toggle-xrandr off
 }
 
 if [ -f "$HOME"/.cache/gaming.lock ]; then
   [ "$XDG_SESSION_TYPE" = "wayland" ] && wayland_off || x11_off
   start-program transmission-daemon
   start-program syncthing
-  nvidia-settings -a '[gpu:0]/GPUPowerMizerMode=2'
   rm "$HOME"/.cache/gaming.lock
   quick-notify "Gaming Time" "OFF"
 else
@@ -49,7 +48,6 @@ else
   transmission-remote --exit
   syncthing cli operations shutdown
   kill-nicely ferdium
-  nvidia-settings -a '[gpu:0]/GPUPowerMizerMode=1'
   touch "$HOME"/.cache/gaming.lock
   quick-notify "Gaming Time" "ON"
 fi