blob: 9d6162b41903ba9a634d8676f601b9c3c79f398e (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
pkill dunst
dunst -config ~/.config/dunst/dunstrc &
dunstify -u critical "Test message" "critical test 1"
dunstify -u normal "Test message" "normal test 2"
dunstify -u low "Test message" "low test 3"
|