hyprland config

This commit is contained in:
thatscringebro
2023-09-21 18:37:25 -04:00
parent fd3d6567dc
commit 98f7bd2701
62 changed files with 2843 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
SCRIPTSDIR=$HOME/.config/hypr/scripts
# Kill already running process
_ps=(waybar mako)
for _prs in "${_ps[@]}"; do
if [[ $(pidof ${_prs}) ]]; then
killall -9 ${_prs}
fi
done
# Lauch notification daemon (mako)
${SCRIPTSDIR}/Mako.sh &
# Lauch statusbar (waybar)
${SCRIPTSDIR}/Waybar.sh &
# Lauch syncthing
${SCRIPTSDIR}/syncthing.sh &