mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 13:50:38 -04:00
14 lines
261 B
Bash
Executable file
14 lines
261 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# set variables
|
|
|
|
ScrDir=`dirname "$(realpath "$0")"`
|
|
source $ScrDir/globalcontrol.sh
|
|
dstDir="${XDG_CONFIG_HOME:-$HOME/.config}/dunst"
|
|
|
|
# regen conf
|
|
|
|
cat "$dstDir/dunst.conf" "$dstDir/Wall-Dcol.conf" > "$dstDir/dunstrc"
|
|
killall dunst
|
|
dunst &
|
|
|