moved scripts folder to root directory

This commit is contained in:
scbj
2025-01-23 08:54:49 +01:00
parent 67bf396efb
commit afff479a7c
6 changed files with 3 additions and 3 deletions

15
scripts/dunst.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/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
}