added fastfetch, power-profiles-daemon (only to ROG users), see changelogs notes
This commit is contained in:
parent
07824f1fab
commit
216008382e
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## 23 May 2024
|
## 23 May 2024
|
||||||
- added qalculate-gtk to work with rofi-calc. Default keybinds (SUPER ALT C)
|
- 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
|
## 22 May 2024
|
||||||
- nwg-look is now in extra repo so replaced with nwg-look from nwg-look-bin
|
- nwg-look is now in extra repo so replaced with nwg-look from nwg-look-bin
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,7 @@ brightnessctl
|
||||||
btop
|
btop
|
||||||
cava
|
cava
|
||||||
eog
|
eog
|
||||||
|
fastfetch
|
||||||
gnome-system-monitor
|
gnome-system-monitor
|
||||||
mousepad
|
mousepad
|
||||||
mpv
|
mpv
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ LOG="Install-Logs/install-$(date +%d-%H%M%S)_rog.log"
|
||||||
### Install software for Asus ROG laptops ###
|
### Install software for Asus ROG laptops ###
|
||||||
|
|
||||||
printf " Installing ASUS ROG packages...\n"
|
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"
|
install_package "$ASUS" 2>&1 | tee -a "$LOG"
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo -e "\e[1A\e[K${ERROR} - $ASUS Package installation failed, Please check the installation logs"
|
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
|
done
|
||||||
|
|
||||||
printf " Activating ROG services...\n"
|
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
|
clear
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue