memmon/config.py

13 lines
367 B
Python
Raw Permalink Normal View History

2024-12-21 14:03:39 +01:00
# 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'