Handy dot files with sensible bindings and settings
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.
 
 
 
 
 

21 lines
399 B

#!/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
pkill "${_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 &