Page 4 of 4
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Fri Nov 22, 2024 11:02 pm
by Sofiya
Gnimmelf wrote: Tue Nov 19, 2024 6:03 pm
hi there
i tried KLA-Plasma-KDE-CE 1.3 and wonder if its possible to set the cpu freq govenor to "performance" - installed xfce4-cpufreq-plugin but it doesnt seem to give me a frontend?
could someone guide me into how to do this?
kindly Gnimmelf
CPU Power Mode
sudo pacman -Syu cpupower
cpupower - Linux kernel tool to examine and tune power saving related features of your processor
Check the processor operating mode cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
scripts for switching processor modes:
You can also install the GUI from AUR cpupower-gui
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Fri Nov 22, 2024 11:13 pm
by Sofiya
view available processor frequency regulators: cpupower frequency-info
Modern desktop processors support 3 main modes: powersave, ondemand and performance.
powersave — power saving mode, the core will operate at reduced frequencies
ondemand — mode depending on the current load on the core
performance — maximum power mode, sets the maximum possible frequency
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Sat Nov 23, 2024 12:27 am
by Sofiya
You can also write a script to switch between the three modes. "You can specify your own modes - the main thing is to SPECIFY them correctly.
modes - "schedutil" "performance" "powersave"
powermode.sh
Code: Select all
#!/bin/bash
if [ "`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor`" == "schedutil" ]; then
sudo cpupower frequency-set -g performance > /dev/null
notify-send -i cpu.svg "PERFOMANCE CPU MODE ON"
elif [ "`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor`" == "performance" ]; then
sudo cpupower frequency-set -g powersave > /dev/null
notify-send -i cpu.svg "POWERSAVE CPU MODE ON"
else
sudo cpupower frequency-set -g schedutil > /dev/null
notify-send -i cpu.svg "SCHEDUTIL CPU MODE ON"
fi
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Sat Nov 23, 2024 6:45 am
by Sofiya
KLA-Plasma-KDE-CE
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Thu Dec 05, 2024 8:59 am
by Sofiya
Announcement:
Pamac package manager - fixed. Can be updated, but don't forget to remove it from ignored ( libpamac-aur , pamac-aur )
If you have followed these procedures.
viewtopic.php?p=135609#p135609
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Thu Dec 05, 2024 10:36 am
by Clarity
Hello @Sofiya and @rockedge
KLA-Plasma-KDE-CE ( stable release ) seems to have 2 sites: This thread is one and Here is the other
Re: KLA-Plasma-KDE-CE ( stable release )
Posted: Thu Dec 05, 2024 3:36 pm
by rockedge
Clarity wrote: Thu Dec 05, 2024 10:36 am
Hello @Sofiya and @rockedge
KLA-Plasma-KDE-CE ( stable release ) seems to have 2 sites: This thread is one and Here is the other
@Sofiya and I have decided there are good reasons to keep both threads.
Re: KLA-Plasma-KDE-CE-1.4 ( stable release )
Posted: Tue Dec 24, 2024 9:50 am
by Sofiya