dotfiles/redshift/hook.sh

11 lines
270 B
Bash
Raw Normal View History

2017-01-26 13:48:55 +01:00
#!/bin/sh
case $1 in
period-changed)
exec notify-send "Redshift" "Period changed to $3"
;;
*)
exec notify-send "Redshift" "Redshift just fired an unknown hook with these options: '$*'. Ah, of course, this notification is just here, to troll you! :-P"
;;
esac