Sway-config/.config/sway/toggle_gammastep.sh

14 lines
276 B
Bash
Raw Normal View History

2023-03-23 15:46:11 +01:00
#!/usr/bin/env bash
# This script will toggle gammastep
# Dependencies: sway, gammastep, gnu-utils
PID="$(ps -e | grep gammastep | awk -F ' ' '{print $1}')"
if [[ $PID > 0 ]]; then
kill $PID
else
swaymsg exec "gammastep-indicator -c .config/sway/gammastep.ini"
fi
exit 0