♻️ refactor(hypr): moved autostart script into two categories: apps and services

This commit is contained in:
Sergio Laín 2023-12-22 23:40:25 +01:00
parent 90ee55c630
commit debab27a63
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 13 additions and 9 deletions

View file

@ -1,5 +1,6 @@
# Autostart # Autostart
exec-once = $HOME/.config/hypr/scripts/autostart exec-once = $HOME/.config/hypr/scripts/autostart/services
exec-once = $HOME/.config/hypr/scripts/autostart/apps
# Environment Variables # Environment Variables
env = QT_QPA_PLATFORMTHEME, qt5ct env = QT_QPA_PLATFORMTHEME, qt5ct

View file

@ -0,0 +1,10 @@
#!/bin/bash
# Apps
spotify &
discord &
thunderbird &
# Terminal Apps
kitty --class btop btop &
kitty --class nvtop nvtop &

View file

@ -45,12 +45,5 @@ systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP &
"$scripts"/launch_portals & "$scripts"/launch_portals &
xwaylandvideobridge & xwaylandvideobridge &
# Apps # Audio
easyeffects --gapplication-service & easyeffects --gapplication-service &
spotify &
discord &
thunderbird &
# Terminal Apps
kitty --class btop btop &
kitty --class nvtop nvtop &