13 lines
367 B
Python
13 lines
367 B
Python
# Memory monitor configs
|
|
MEM_MIN_AVAILABLE_G = 1.0
|
|
TIME_SLEEP_MEM_S = 1
|
|
SIGNAL = 'STOP' # 'STOP' or 'KILL'
|
|
|
|
STR_CONT_OPT = "\n\n Run 'kill -SIGCONT <PID>' to resume" if SIGNAL == 'STOP' else ""
|
|
|
|
# Disk space monitor
|
|
MIN_FREE_DISK_SPACE_G = 2.0
|
|
TIME_SLEEP_DISK_S = 60
|
|
|
|
ICON_NOTIFY = '/home/pi2/.local/share/icons/Flat-Remix-Blue-Dark/apps/scalable/dialog-warning.svg'
|