23 lines
1.1 KiB
Bash
Executable File
23 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# klevstul :: start miscellanous application :: 25.12.28
|
|
|
|
notify-send "<< startup.sh >>"
|
|
|
|
source /home/poq/syncDir/secrets/toBeSourced/secretsAsEnvVariables.sh # set secrets as env variables
|
|
|
|
hypropolkitagent & # authentification
|
|
hypridle & # idle management deamon
|
|
hyprpaper & # wallpaper
|
|
until hyprctl hyprpaper listloaded > /dev/null 2>&1; do sleep 0.1; done # prevent race condition
|
|
sleep 0.5 && nwg-panel & # status bar
|
|
|
|
sleep 2 && nm-applet & # network manager applet
|
|
sleep 2 && nextcloud & # nextcloud file sync
|
|
sleep 2 && pcloud & # pcloud service
|
|
|
|
if [[ "${HOSTNAME}" == "tuxwarrior" ]] ; then
|
|
hyprmon --profile office &
|
|
sleep 2 && synology-drive &
|
|
fi
|