Create gammastep-toggle

This commit is contained in:
FURK4NGG
2026-01-06 21:12:29 +03:00
committed by GitHub
parent d033bcd1e0
commit 04c975fe0b
+9
View File
@@ -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