minus-squarespez@sh.itjust.worksOPtoLinux@lemmy.ml•[SOLVED] Power Profile not working on Arch with KDE. Tried everything.linkfedilinkEnglisharrow-up1·5 months agoSwitching to tuneD worked! Thank you so much! Here’s what I did, from here. I’ve slightly modified the commands since that guide is from when tuneD was still on the AUR. 1. Uninstall power-profiles-daemon sudo pacman -Rns power-profiles-daemon 2. Check that power-profiles-daemon.service is gone systemctl status power-profiles-daemon The output should be : Unit power-profiles-daemon.service could not be found. 3. Install tuneD: sudo pacman -S tuned 4. Enable and start tuneD: systemctl enable tuned systemctl start tuned 5. Check that tuneD is running correctly: ● tuned.service - Dynamic System Tuning Daemon Loaded: loaded (/usr/lib/systemd/system/tuned.service; enabled; preset: disabled) Active: active (running) .... 6. Check the active profile: tuned-adm active Now, you can use tuned-adm to switch to profiles, but since I am using a DE, I won’t be doing that. Now reboot and the power profile slider should be working! linkfedilink
spez@sh.itjust.works to Linux@lemmy.mlEnglish · edit-25 months ago[SOLVED] Power Profile not working on Arch with KDE. Tried everything.plus-squarelemmy.mlimagemessage-square2fedilinkarrow-up16arrow-down11
arrow-up15arrow-down1image[SOLVED] Power Profile not working on Arch with KDE. Tried everything.plus-squarelemmy.mlspez@sh.itjust.works to Linux@lemmy.mlEnglish · edit-25 months agomessage-square2fedilink
minus-squarespez@sh.itjust.workstoSelfhosted@lemmy.world•This should be a pinned post as it really captures the essence of my experience so far.linkfedilinkEnglisharrow-up0·edit-22 years ago Self hosted Cloud provided media storage linkfedilink
Switching to tuneD worked! Thank you so much!
Here’s what I did, from here. I’ve slightly modified the commands since that guide is from when tuneD was still on the AUR.
1. Uninstall power-profiles-daemon
sudo pacman -Rns power-profiles-daemon
2. Check that power-profiles-daemon.service is gone
systemctl status power-profiles-daemon
The output should be :
Unit power-profiles-daemon.service could not be found.
3. Install tuneD:
sudo pacman -S tuned
4. Enable and start tuneD:
systemctl enable tuned systemctl start tuned
5. Check that tuneD is running correctly:
● tuned.service - Dynamic System Tuning Daemon Loaded: loaded (/usr/lib/systemd/system/tuned.service; enabled; preset: disabled) Active: active (running) ....
6. Check the active profile:
Now, you can use
tuned-adm
to switch to profiles, but since I am using a DE, I won’t be doing that. Now reboot and the power profile slider should be working!