Files
collection/commands/dunst.sh
quak 91a4eb30eb added separate files for custom functions sourced from .bashrc
added 'commands to look at/remember'
2024-09-25 22:07:40 +02:00

16 lines
331 B
Bash

#!/usr/bin/env bash
# reset dunst and send notification to Test dUNST config
tunst() {
killall -9 dunst
if [[ -z $1 ]]; then
notify-send "Henlo" "fren of fren of very fren";
else
for n in $(seq 1 $1); do
notify-send "Henlo(${n})" "fren of fren of fren number ${n}";
done
fi
}