profiles: added powersave profile tuned: reduced number of installed profiles, the rest are in compat subpackage
13 lines
151 B
Bash
Executable file
13 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
set_disk_alpm min_power
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
set_disk_alpm max_performance
|
|
return 0
|
|
}
|