mirror of
https://github.com/rwinkhart/artix-install-script.git
synced 2026-08-28 12:56:26 -04:00
6 lines
207 B
Bash
Executable File
6 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for CPU in $(seq 0 $(($(nproc) - 1))); do
|
|
echo $1 > /sys/devices/system/cpu/cpu"$CPU"/cpufreq/scaling_governor
|
|
cat /sys/devices/system/cpu/cpu"$CPU"/cpufreq/scaling_governor
|
|
done
|