mirror of
https://github.com/sqall01/LSMS.git
synced 2024-11-17 01:28:25 +01:00
7 lines
170 B
Python
7 lines
170 B
Python
from typing import List
|
|
|
|
# List of process names that are ignored.
|
|
NON_KTHREAD_WHITELIST = [] # type: List[str]
|
|
|
|
# Is the script allowed to run or not?
|
|
ACTIVATED = True
|