mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
11 lines
270 B
Bash
11 lines
270 B
Bash
![]() |
#!/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
|