mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 02:54:40 +02:00
10 lines
270 B
Bash
Executable file
10 lines
270 B
Bash
Executable file
#!/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
|