mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
8 lines
122 B
Bash
Executable File
8 lines
122 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CONFIG="$HOME/.config/hypr/dunst/dunstrc"
|
|
|
|
if [[ ! $(pidof dunst) ]]; then
|
|
dunst -conf ${CONFIG}
|
|
fi
|