From 61fc7eb7cabce5ed55365c3049e9bcaebaaa91e4 Mon Sep 17 00:00:00 2001 From: Szymon P Date: Mon, 29 Sep 2025 13:52:33 +0200 Subject: [PATCH] Update .config/btop/btop.conf Update .local/bin/system_setup.sh --- private_dot_config/btop/btop.conf | 2 +- private_dot_local/bin/executable_system_setup.sh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/private_dot_config/btop/btop.conf b/private_dot_config/btop/btop.conf index 5316fad..ddd4c12 100644 --- a/private_dot_config/btop/btop.conf +++ b/private_dot_config/btop/btop.conf @@ -57,7 +57,7 @@ update_ms = 2000 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. -proc_sorting = "cpu direct" +proc_sorting = "threads" #* Reverse sorting order, True or False. proc_reversed = False diff --git a/private_dot_local/bin/executable_system_setup.sh b/private_dot_local/bin/executable_system_setup.sh index 2b4b3a4..eb36c2c 100644 --- a/private_dot_local/bin/executable_system_setup.sh +++ b/private_dot_local/bin/executable_system_setup.sh @@ -116,7 +116,7 @@ THEME_PKGS=" catppuccin-gtk-theme-latte " -PKGS=( $HYPR_PKGS $SOUND_PKGS $UTIL_PKGS $GUI_PKGS $PRINT_PKGS $THEME_PKGS ) +PKGS=( $HYPR_PKGS $SOUND_PKGS $UTIL_PKGS $GUI_PKGS $PRINT_PKGS ) echo "Downloading packages..." sudo pacman -Syu --needed "${PKGS[@]}" @@ -149,4 +149,7 @@ echo "Services setup..." systemctl --user enable hypridle hyprpolkitagent pipewire-pulse sudo systemctl enable bluetooth cups +echo "Downloading theme with yay..." +yay -S $THEME_PKGS --needed + echo -e "${BOLD}${GREEN}All done!${RESET}"