commit cf48e958c74d479e25755b08d8c99e898016d44a
parent d831b474bb03540adcb18313805f867c3751267e
Author: Oscar Benedito <oscar@oscarbenedito.com>
Date:   Sun, 28 Jun 2020 23:20:27 +0200

Add test-dunst script

Diffstat:
A.local/bin/test-dunst | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/.local/bin/test-dunst b/.local/bin/test-dunst @@ -0,0 +1,14 @@ +#!/usr/bin/env sh + +pkill dunst +dunst -config ~/.config/dunst/dunstrc & + +notify-send -u critical "Test message: critical test 1" "This is the contents of the message" +notify-send -u normal "Test message: normal test 2" "This is the contents of the message" +notify-send -u low "Test message: low test 3" "This is the contents of the message" +notify-send -u critical "Test message: critical test 4" "This is the contents of the message" +notify-send -u normal "Test message: normal test 5" "This is the contents of the message" +notify-send -u low "Test message: low test 6" "This is the contents of the message" +notify-send -u critical "Test message: critical test 7" "This is the contents of the message" +notify-send -u normal "Test message: normal test 8" "This is the contents of the message" +notify-send -u low "Test message: low test 9" "This is the contents of the message"