From 19da4a3175560f6f80b6e9ea3e8f0a52c63763d5 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 23 May 2024 13:22:46 +0900 Subject: [PATCH 1/3] added qalculate-gtk for Hyprland-Dots v2.2.12 --- CHANGELOGS.md | 3 +++ install-scripts/00-hypr-pkgs.sh | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index e8dea86..c225ea3 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 23 May 2024 +- added qalculate-gtk to work with rofi-calc. Default keybinds (SUPER ALT C) + ## 22 May 2024 - change the sddm theme destination to /etc/sddm.conf.d/10-theme.conf to theme.conf.user diff --git a/install-scripts/00-hypr-pkgs.sh b/install-scripts/00-hypr-pkgs.sh index 1c13674..a6f5841 100755 --- a/install-scripts/00-hypr-pkgs.sh +++ b/install-scripts/00-hypr-pkgs.sh @@ -51,6 +51,7 @@ hypr_package_2=( mpv-mpris nvtop pamixer + qalculate-gtk vim ) From fc5b5b79117c9a8f413982cffe69d59fc86612d2 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 24 May 2024 00:08:07 +0900 Subject: [PATCH 2/3] power-profiles-daemon (only to ROG users), see changelogs notes --- CHANGELOGS.md | 2 ++ install-scripts/rog.sh | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index c225ea3..c43387b 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. +- Note: Fastfetch configs will be added from Hyprland-Dots v2.2.12. However, you need to install from Fastfetch github page ## 22 May 2024 - change the sddm theme destination to /etc/sddm.conf.d/10-theme.conf to theme.conf.user diff --git a/install-scripts/rog.sh b/install-scripts/rog.sh index 8860cd4..e6e98e1 100755 --- a/install-scripts/rog.sh +++ b/install-scripts/rog.sh @@ -2,6 +2,10 @@ # 💫 https://github.com/JaKooLit 💫 # # ASUS ROG ) # +asus=( + power-profiles-daemon +) + ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ## # Determine the directory where the script is located SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" @@ -15,6 +19,18 @@ source "$(dirname "$(readlink -f "$0")")/Global_functions.sh" # Set the name of the log file to include the current date and time LOG="install-$(date +%d-%H%M%S)_rog.log" +# Installing enhancemet +for PKG1 in "${asus[@]}"; do + install_package "$PKG1" 2>&1 | tee -a "$LOG" + if [ $? -ne 0 ]; then + echo -e "\033[1A\033[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs" + exit 1 + fi +done + +printf " enabling power-profiles-daemon...\n" +sudo systemctl enable power-profiles-daemon 2>&1 | tee -a "$LOG" + # Function to handle the installation and log messages install_and_log() { local project_name="$1" From d80435679a07a9e21d30b47c349de0175ad587d8 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 24 May 2024 19:22:50 +0900 Subject: [PATCH 3/3] a pre-release of Hyprland-Dots v2.2.12 --- install-scripts/dotfiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-scripts/dotfiles.sh b/install-scripts/dotfiles.sh index 1a8fd7d..e0c470f 100755 --- a/install-scripts/dotfiles.sh +++ b/install-scripts/dotfiles.sh @@ -3,7 +3,7 @@ # Hyprland-Dots to download a specific release # # Define the specific release version to download -specific_version="v2.2.11-1" +specific_version="v2.2.12" ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##