blob: 856a97a3727c7f74a60718eca85f050db4a0cf71 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
t="$(promptmenu cpufreq << EOF
powersave
schedutil
conservative
performance
ondemand
userspace
EOF
)"
r="$(setgov $t 2>&1)"
notify-send "cpufreq $t" "$r"
|