14 lines
228 B
Bash
Executable File
14 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
# berry directory
|
|
DIR="$HOME/.config/berry"
|
|
|
|
# Launch dunst daemon
|
|
if [[ `pidof dunst` ]]; then
|
|
pkill dunst
|
|
fi
|
|
|
|
dunst -config "$DIR"/dunstrc &
|