hyprland config
This commit is contained in:
20
hyprland/hypr/scripts/Startup.sh
Executable file
20
hyprland/hypr/scripts/Startup.sh
Executable 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 &
|
||||
Reference in New Issue
Block a user