diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 9c90820..a1c4178 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -483,4 +483,16 @@ # appname = "some_volume_notifiers" # set_stack_tag = "volume" # + +[notification_sound] + summary = "*" + script = ~/.config/dunst/play-notif-sound.sh + +[pomodoro] + appname = "notify-send" + summary = "Timer *" + new_icon = "~/.config/dunst/icons/pomodoro.png" + urgency = normal + script = ~/.config/dunst/play-pomodoro.sh + # vim: ft=cfg diff --git a/.config/dunst/icons/pomodoro.png b/.config/dunst/icons/pomodoro.png new file mode 100644 index 0000000..e8c4b5c Binary files /dev/null and b/.config/dunst/icons/pomodoro.png differ diff --git a/.config/dunst/play-notif-sound.sh b/.config/dunst/play-notif-sound.sh new file mode 100755 index 0000000..b624dab --- /dev/null +++ b/.config/dunst/play-notif-sound.sh @@ -0,0 +1 @@ +paplay ~/.config/dunst/sounds/pop.mp3 diff --git a/.config/dunst/play-pomodoro.sh b/.config/dunst/play-pomodoro.sh new file mode 100755 index 0000000..a01cfc0 --- /dev/null +++ b/.config/dunst/play-pomodoro.sh @@ -0,0 +1 @@ +paplay ~/.config/dunst/sounds/positive.wav diff --git a/.config/dunst/sounds/happy-bells.wav b/.config/dunst/sounds/happy-bells.wav new file mode 100644 index 0000000..8902bd5 Binary files /dev/null and b/.config/dunst/sounds/happy-bells.wav differ diff --git a/.config/dunst/sounds/pop.mp3 b/.config/dunst/sounds/pop.mp3 new file mode 100644 index 0000000..a1ad34a Binary files /dev/null and b/.config/dunst/sounds/pop.mp3 differ diff --git a/.config/dunst/sounds/positive.wav b/.config/dunst/sounds/positive.wav new file mode 100644 index 0000000..d2dd8d8 Binary files /dev/null and b/.config/dunst/sounds/positive.wav differ