2024-04-30 21:26:27 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-02-24 18:35:15 -05:00
|
|
|
# klevstul :: start miscellanous application :: 25.12.28
|
2024-11-17 06:49:42 -05:00
|
|
|
|
2026-02-24 10:32:47 +00:00
|
|
|
notify-send "<< startup.sh >>"
|
2024-11-17 06:49:42 -05:00
|
|
|
|
2026-02-25 14:05:09 -05:00
|
|
|
source /home/poq/syncDir/secrets/toBeSourced/secretsAsEnvVariables.sh # set secrets as env variables
|
|
|
|
|
|
2026-02-25 15:15:39 -05:00
|
|
|
waybar & # status bar
|
|
|
|
|
hyprpaper & # wallpaper
|
|
|
|
|
hypropolkitagent & # authentification
|
2026-02-27 08:00:25 -05:00
|
|
|
hypridle & # idle management deamon
|
2026-02-27 10:30:13 -05:00
|
|
|
hyprdim --strength 0.1 --dialog-dim 0.1 --duration 500 -& # dims windows on switch | https://github.com/donovanglover/hyprdim
|
|
|
|
|
# Options:
|
|
|
|
|
# -s, --strength <STRENGTH> A value from 0 (no dim) to 1 (maximum dim) [default: 0.4]
|
|
|
|
|
# -d, --duration <DURATION> How many milliseconds to wait before removing dim [default: 800]
|
|
|
|
|
# -f, --fade <FADE> Fade animation speed from 0 (instantaneous) to 255 (very slow) [default: 7]
|
|
|
|
|
# -b, --bezier <BEZIER> Bezier curve used for the animation [default: default]
|
|
|
|
|
# -D, --dialog-dim <DIALOG_DIM> Strength of dim for windows that are the same class and floating [default: 0.7]
|
|
|
|
|
# -v, --verbose Show information about what hyprdim is doing
|
|
|
|
|
# -h, --help Print help (see more with '--help')
|
|
|
|
|
# -V, --version Print version
|
2026-02-25 14:05:09 -05:00
|
|
|
nextcloud & # nextcloud file sync
|
|
|
|
|
pcloud & # pcloud service
|
2025-04-20 20:26:07 -05:00
|
|
|
|
2026-02-24 10:32:47 +00:00
|
|
|
if [[ "${HOSTNAME}" == "tuxwarrior" ]] ; then
|
2026-02-24 12:05:18 +00:00
|
|
|
hyprmon --profile office &
|
2026-02-24 10:32:47 +00:00
|
|
|
synology-drive &
|
|
|
|
|
fi
|