blob: cd399b0c92ce7ebdb506ba572e4e8d39544a3931 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
SCRIPTSDIR=$HOME/.config/hypr/scripts
# Kill already running processes
_ps=(waybar rofi)
for _prs in "${_ps[@]}"; do
if pidof "${_prs}" >/dev/null; then
killall "${_prs}"
fi
done
# Relaunch waybar
waybar &
# Relaunch dunst with pywal-borders
${SCRIPTSDIR}/PywalDunst.sh &
## trying to figure out how to restart Rainbow borders
#sleep 1
#${SCRIPTSDIR}/RainbowBorders.sh &
|