From 04c975fe0bffa119c90dce38a7a9dc0e7f93770c Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Tue, 6 Jan 2026 21:12:29 +0300 Subject: [PATCH] Create gammastep-toggle --- .config/scripts/gammastep-toggle | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .config/scripts/gammastep-toggle diff --git a/.config/scripts/gammastep-toggle b/.config/scripts/gammastep-toggle new file mode 100644 index 0000000..c6c3b05 --- /dev/null +++ b/.config/scripts/gammastep-toggle @@ -0,0 +1,9 @@ +#!/bin/bash + +SERVICE=gammastep-refresh.service + +if systemctl --user is-active --quiet "$SERVICE"; then + systemctl --user stop "$SERVICE" +else + systemctl --user start "$SERVICE" +fi