-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.py
61 lines (52 loc) · 1.33 KB
/
App.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from textual.app import App, ComposeResult
from view.clocks import Clocks
from view.sysinfos import SysInfos
from view.weather import Weather
from widgets.logo import Logo
from textual.containers import Container
class TuiSysInfo(App):
DEFAULT_CSS = """
Screen {
layout: vertical;
}
#all {
layout: grid;
grid-size: 1 2;
grid-rows: 2fr 4.5fr;
}
#container {
layout: grid;
grid-size: 2;
grid-columns: 6fr 1fr;
background: $primary-background;
}
#container-top {
layout: grid;
grid-size: 2 1;
grid-columns: 1fr 4fr;
background: $primary-background-darken-3;
}
#clocksSys {
layout: grid;
grid-size: 1 2;
grid-rows: 2fr 1fr;
height: 100%;
}
"""
def compose(self) -> ComposeResult:
yield Container (
Container(
Logo(),
Container(
Clocks(),
SysInfos(),
id = "clocksSys"
),
id = "container-top"
),
Weather(),
id = "all"
)
if __name__ == "__main__":
app = TuiSysInfo()
app.run()