agsdotfilesdotshyprlandhyprland-configricerofirofi-configshell-scriptsswwwwallustwaybarwaybar-modulewaybar-themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
319 B
17 lines
319 B
#!/bin/bash |
|
|
|
SCRIPTSDIR=$HOME/.config/hypr/scripts |
|
|
|
# Kill already running process |
|
_ps=(waybar mako dunst wofi) |
|
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 &
|
|
|