♻️ refactor(hypr): moved autostart script into two categories: apps and services
This commit is contained in:
parent
90ee55c630
commit
debab27a63
3 changed files with 13 additions and 9 deletions
|
@ -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
|
||||||
|
|
10
.config/hypr/scripts/autostart/apps
Executable file
10
.config/hypr/scripts/autostart/apps
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Apps
|
||||||
|
spotify &
|
||||||
|
discord &
|
||||||
|
thunderbird &
|
||||||
|
|
||||||
|
# Terminal Apps
|
||||||
|
kitty --class btop btop &
|
||||||
|
kitty --class nvtop nvtop &
|
|
@ -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 &
|
|
Loading…
Add table
Reference in a new issue