Files
Arch_Hyprland_dots/.config/scripts/gammastep-toggle
T
2026-01-06 21:12:29 +03:00

10 lines
182 B
Bash

#!/bin/bash
SERVICE=gammastep-refresh.service
if systemctl --user is-active --quiet "$SERVICE"; then
systemctl --user stop "$SERVICE"
else
systemctl --user start "$SERVICE"
fi