chore(hyprland): remove start_apps script

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-04-06 05:36:24 -03:00
parent b0dd61fa9d
commit 1eb80220f2
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 0 additions and 19 deletions

View file

@ -176,7 +176,6 @@ in
# Set-up the scripts for services and apps. # Set-up the scripts for services and apps.
home.packages = lib.mkIf cfg.scripts.startup.enable [ home.packages = lib.mkIf cfg.scripts.startup.enable [
(import ./scripts/start_services.nix pkgs) (import ./scripts/start_services.nix pkgs)
(import ./scripts/start_apps.nix pkgs)
]; ];
# Then add the hyprland screenshot scripts. # Then add the hyprland screenshot scripts.
@ -206,9 +205,6 @@ in
# Start the core services of my desktop # Start the core services of my desktop
exec-once = start_services exec-once = start_services
# Open the apps I always use
exec-once = start_apps
# Set cursor size. # Set cursor size.
exec-once = hyprctl setcursor 24 exec-once = hyprctl setcursor 24
env = XCURSOR_SIZE, 24 env = XCURSOR_SIZE, 24

View file

@ -1,15 +0,0 @@
pkgs:
pkgs.writeShellScriptBin "start_apps" ''
# Open qbittorrent
qbittorrent &
# Open vesktop
vesktop &
# Open steam
steam &
# Open firefox
firefox
''