dotfiles/bspwm/toggleredshift.sh

10 lines
173 B
Bash
Raw Normal View History

2021-02-06 10:46:32 +00:00
#!/bin/sh
if [ -z "`pgrep -x redshift`" ]; then
redshift -l 44:26 &
notify-send Redshift "is now enabled"
else
notify-send Redshift "is now disabled"
pkill redshift
fi