From d10d280a9db2a274a3087fbb27967adbd9595d3c Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Tue, 6 Jan 2026 21:31:34 +0300 Subject: [PATCH] Update gammastep-toggle --- .config/scripts/gammastep-toggle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/scripts/gammastep-toggle b/.config/scripts/gammastep-toggle index c6c3b05..f017731 100644 --- a/.config/scripts/gammastep-toggle +++ b/.config/scripts/gammastep-toggle @@ -1,9 +1,14 @@ #!/bin/bash SERVICE=gammastep-refresh.service +TIMER=gammastep-refresh.timer if systemctl --user is-active --quiet "$SERVICE"; then + # KAPAT + systemctl --user stop "$TIMER" systemctl --user stop "$SERVICE" else + # AÇ systemctl --user start "$SERVICE" + systemctl --user enable --now "$TIMER" fi