From 216008382e05d454a72ca469ad38832b5a71779c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 24 May 2024 00:08:09 +0900 Subject: [PATCH] added fastfetch, power-profiles-daemon (only to ROG users), see changelogs notes --- CHANGELOGS.md | 2 ++ install-scripts/00-hypr-pkgs.sh | 1 + install-scripts/rog.sh | 7 +++++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index ad9f4a2..cb6f5f6 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -2,6 +2,8 @@ ## 23 May 2024 - added qalculate-gtk to work with rofi-calc. Default keybinds (SUPER ALT C) +- added power-profiles-daemon for ROG laptops. Note, I cant add to all since it conflicts with TLP, CPU-Auto-frequency etc. +- added fastfetch ## 22 May 2024 - nwg-look is now in extra repo so replaced with nwg-look from nwg-look-bin diff --git a/install-scripts/00-hypr-pkgs.sh b/install-scripts/00-hypr-pkgs.sh index 3155cb6..a0693b5 100755 --- a/install-scripts/00-hypr-pkgs.sh +++ b/install-scripts/00-hypr-pkgs.sh @@ -58,6 +58,7 @@ brightnessctl btop cava eog +fastfetch gnome-system-monitor mousepad mpv diff --git a/install-scripts/rog.sh b/install-scripts/rog.sh index 3cf5da9..ea97328 100755 --- a/install-scripts/rog.sh +++ b/install-scripts/rog.sh @@ -18,7 +18,7 @@ LOG="Install-Logs/install-$(date +%d-%H%M%S)_rog.log" ### Install software for Asus ROG laptops ### printf " Installing ASUS ROG packages...\n" -for ASUS in asusctl supergfxctl rog-control-center; do +for ASUS in power-profiles-daemon asusctl supergfxctl rog-control-center; do install_package "$ASUS" 2>&1 | tee -a "$LOG" if [ $? -ne 0 ]; then echo -e "\e[1A\e[K${ERROR} - $ASUS Package installation failed, Please check the installation logs" @@ -27,7 +27,10 @@ install_package "$ASUS" 2>&1 | tee -a "$LOG" done printf " Activating ROG services...\n" -sudo systemctl enable --now supergfxd 2>&1 | tee -a "$LOG" +sudo systemctl enable supergfxd 2>&1 | tee -a "$LOG" + +printf " enabling power-profiles-daemon...\n" +sudo systemctl enable power-profiles-daemon 2>&1 | tee -a "$LOG" clear