-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenus
executable file
·181 lines (156 loc) · 4.12 KB
/
menus
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
tools_menu {
panel {
class = overlay
panel {
attach_hcenter = 0
attach_vcenter = 0
width = 30
panel {
class = dialog-title
image { image = "$$/images/txt-tools.png" attach_left = 0 }
}
panel {
class = dialog-body
text { class = br }
text {
text = "Toggle Mode"
command = "menu_toggle_mode"
class = text-menu-item
}
text {
text="Terminal"
command = "menu_popup term_window"
class = text-menu-item
}
text {
text = "Restart"
command = reboot
class = text-menu-item
}
text {
text = "Shutdown"
command = halt
class = text-menu-item
}
text {
text = "Help"
command = "menu_popup help"
class = text-menu-item
}
text {
text = "About"
command = "menu_popup about"
class = text-menu-item
}
}
}
}
}
about {
panel {
class = overlay
panel {
attach_hcenter = 0
attach_vcenter = 0
margin_left = 2
width = 60
panel {
class = dialog-title
image { image = "$$/images/txt-about.png" attach_left = 0 }
}
panel {
class = dialog-body
text { class = br }
text { text = "Darkness" class = "dialog-text" }
text { class = br }
text { text = "Designed & Created by LuxieRayku([email protected])" class = "dialog-text" }
text { text = "Darkness theme is designed to feel clean," class = "dialog-text" }
text { text = "light, modern & minimal." class = dialog-text }
text { class = br }
panel {
halign = center
class = button
command = true
text { text = OK class = button-text }
}
}
}
}
}
help {
panel {
class = overlay
panel {
attach_hcenter = 0
attach_vcenter = 0
margin_left = 2
width = 48
panel {
class = dialog-title
image { image = "$$/images/txt-help.png" attach_left = 0 }
}
panel {
class = dialog-body
text { text = "F1/h - Help" class = dialog-text }
text { text = "F2/t - Change theme" class = dialog-text }
text { text = "F3/r - Change resolution" class = dialog-text }
text { text = "F5/ctrl-x - Finish edit" class = dialog-text }
text { text = "F6 - Next window" class = dialog-text }
text { text = "F7 - Show folded items" class = dialog-text }
text { text = "F8 - Toggle between text and graphic mode" class = dialog-text }
text { text = "F9 - Shutdown" class = dialog-text }
text { text = "F10 - Reboot" class = dialog-text }
text { text = "f - Toggle between folded and unfolded mode" class = dialog-text }
text { text = "c - Open terminal" class = dialog-text }
text { text = "2 - Open two terminals" class = dialog-text }
text { text = "e - Edit current command" class = dialog-text }
text { text = "q - Quit graphic mode" class = dialog-text }
text { text = "i - Show theme information" class = dialog-text }
text { text = "n - Next item with the same class" class = dialog-text }
text { text = "w - Next windows item" class = dialog-text }
text { text = "u - Next ubuntu item" class = dialog-text }
text { text = "ESC - Exit from window or menu" class = dialog-text }
panel {
halign = center
class = button
command = true
text { text = OK class = button-text }
}
}
}
}
}
term_window {
panel {
class = terminal
width = 100%
height = 100%
term {
width=100%
height=100%
}
}
}
two_term {
panel {
width = 100%
height = 100%
direction = left_to_right
panel {
class = terminal
extend = 1
term {
width=100%
height=100%
}
}
panel {
class = terminal
extend = 1
term {
width=100%
height=100%
}
}
}
}