1
0
Fork 0
tuned/profiles/powersave/script.sh
2023-02-19 15:23:12 +01:00

17 lines
271 B
Bash
Executable file

#!/bin/bash
. /usr/lib/tuned/functions
start() {
[ "$USB_AUTOSUSPEND" = 1 ] && enable_usb_autosuspend
enable_wifi_powersave
return 0
}
stop() {
[ "$USB_AUTOSUSPEND" = 1 ] && disable_usb_autosuspend
disable_wifi_powersave
return 0
}
process $@