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