mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
18 lines
314 B
Bash
18 lines
314 B
Bash
#!/bin/bash
|
|
|
|
SCRIPTSDIR=$HOME/.config/hypr/scripts
|
|
|
|
# Kill already running process
|
|
_ps=(waybar mako dunst)
|
|
for _prs in "${_ps[@]}"; do
|
|
if [[ $(pidof ${_prs}) ]]; then
|
|
killall -9 ${_prs}
|
|
fi
|
|
done
|
|
|
|
# Lauch notification daemon (dunst)
|
|
${SCRIPTSDIR}/Dunst.sh &
|
|
|
|
# Lauch statusbar (waybar)
|
|
${SCRIPTSDIR}/Waybar.sh &
|