-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbafr.py
executable file
·40 lines (34 loc) · 1.07 KB
/
bafr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
from date import date
from volume import volume
from weather import weather
from load import load
from memory import memory
from keyboard_layout import keyboard_layout
from network import network
from brightness import brightness
from updates import updates
from cli import cli
import sys
available_modules = { "date" : date,
"volume" : volume,
"weather": weather,
"load" : load,
"memory" : memory,
"keyboard_layout": keyboard_layout,
"network": network,
"brightness": brightness,
"updates": updates
}
def assert_available(module):
if module not in available_modules:
print("Available modules =>")
for i in available_modules.keys():
print(f"\t {i}")
sys.exit(1)
def main():
module, params = cli()
assert_available(module)
available_modules[module](params)
if __name__ == "__main__":
main()