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

13 lines
233 B
Bash

#!/usr/bin/bash
# This script will toggle gammastep
# Dependencies: gammastep
PID="$(ps -e | grep gammastep | awk '{print $1}')"
if [[ $PID > 0 ]]; then
kill $PID
else
gammastep-indicator -c .config/sway/gammastep.ini
fi
exit 0