34 lines
497 B
Bash
Executable File
34 lines
497 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
# variables
|
|
config=$HOME/.config/hypr
|
|
|
|
# wallpaper
|
|
hyprpaper &
|
|
|
|
# notification daemon
|
|
dunst &
|
|
|
|
# secrets manager
|
|
kwalletd6 &
|
|
|
|
# waybar
|
|
waybar &
|
|
|
|
# syncronisation
|
|
syncthing &
|
|
nextcloud --background &
|
|
|
|
# clipboard
|
|
wl-paste --watch cliphist store &
|
|
|
|
# network-manager tray icon
|
|
NetworkManager &
|
|
nm-applet &
|
|
# other
|
|
polkit-kde-authentication-agent-1 &
|
|
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP &
|
|
hypridle &
|
|
polkit-qt6 &
|
|
xwaylandvideobridge &
|