21 lines
647 B
Plaintext
21 lines
647 B
Plaintext
# add space-separated list of MOTD script names (without number) to exclude them from MOTD
|
|
# Example:
|
|
# MOTD_DISABLE="header tips updates"
|
|
# ONE_WIRE="yes" show 1-wire temperature sensor if attached
|
|
# PRIMARY_DIRECTION="rx" show daily traffic stats, options: "rx", "tx", "both", "off", vnstat needs to be installed
|
|
|
|
MOTD_DISABLE=""
|
|
ONE_WIRE=""
|
|
HIDE_IP_PATTERN="^dummy0|^lo"
|
|
PRIMARY_INTERFACE="$(ip route | grep '^default' | sed "s/.*dev //" | cut -d" " -f1)"
|
|
PRIMARY_DIRECTION="rx"
|
|
STORAGE=/dev/sda1
|
|
|
|
# Temperature offset in Celcius degrees
|
|
CPU_TEMP_OFFSET=0
|
|
|
|
# Define where red color is used
|
|
CPU_TEMP_LIMIT=60
|
|
HDD_TEMP_LIMIT=60
|
|
AMB_TEMP_LIMIT=40
|