Tuesday, April 30, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 5481  / 2 Years ago, sat, april 9, 2022, 1:36:58

So, I use AIO device and that means this device always plugged in, and I can use performance mode but every time I reboot it auto-set to balance mode. How can I use performance mode permanently?


This what I talk about


More From » performance

 Answers
2

This link https://gitlab.freedesktop.org/hadess/power-profiles-daemon is providing all the details required for command line.


Installation Steps


git clone https://gitlab.freedesktop.org/hadess/power-profiles-daemon.git
cd power-profiles-daemon
meson _build -Dprefix=/usr
ninja -v -C _build install

to know which profile is active run below command


gdbus introspect --system --dest net.hadess.PowerProfiles --object-path /net/hadess/PowerProfiles

some of the result


  interface net.hadess.PowerProfiles {
methods:
signals:
properties:
readwrite s ActiveProfile = 'balanced';

to set the Performance mode run the below command


gdbus call --system --dest net.hadess.PowerProfiles --object-path /net/hadess/PowerProfiles --method org.freedesktop.DBus.Properties.Set 'net.hadess.PowerProfiles' 'ActiveProfile' "<'performance'>"

Available Profiles



  1. power-saver

  2. balanced

  3. performance


Try this command and reboot and see for the persistence. If the profile is changing back to what you dont want, then put the above command in startup command list.


[#1533] Saturday, April 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
polcomposte

Total Points: 421
Total Questions: 92
Total Answers: 109

Location: Uzbekistan
Member since Mon, Jul 20, 2020
4 Years ago
;