mirror of
https://github.com/unraid/webgui.git
synced 2026-02-06 00:49:06 -06:00
14 lines
483 B
Bash
Executable File
14 lines
483 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This file provides the command line for the setterm utility to set the
|
|
# terminal attributes (primarily used for screen blanking and power
|
|
# management).
|
|
|
|
# Screen blanks after 15 minutes idle time, and powers down in one hour
|
|
# if the kernel supports APM or ACPI power management (default setting):
|
|
/bin/setterm -blank 15 -powersave powerdown -powerdown 60
|
|
|
|
# Screen does not blank or use power management features:
|
|
#/bin/setterm -blank 0 -powersave off -powerdown 0
|
|
|