source: client/shared/lib/burg/themes/OpenGnsys/menus @ 23e53a5

918-git-images-111dconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacion
Last change on this file since 23e53a5 was 754534e, checked in by adv <adv@…>, 8 years ago

#796 tema gráfico de OpenGnsys para burg

git-svn-id: https://opengnsys.es/svn/branches/version1.1@5380 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 4.2 KB
Line 
1tools_menu {
2  panel {
3    class = overlay
4
5    panel {
6      attach_hcenter = 0
7      attach_vcenter = 0
8      width = 30
9
10      panel {
11        class = dialog-title
12        image { image = "$$/images/txt-tools.png" attach_left = 0 }
13      }
14
15      panel {
16        class = dialog-body
17
18        text { class = br }
19
20        text {
21          text = "Toggle Mode"
22          command = "menu_toggle_mode"
23          class = text-menu-item
24        }
25        text {
26          text="Terminal"
27          command = "menu_popup term_window"
28          class = text-menu-item
29        }
30        text {
31          text = "Restart"
32          command = reboot
33          class = text-menu-item
34        }
35        text {
36          text = "Shutdown"
37          command = halt
38          class = text-menu-item
39        }
40        text {
41          text = "Help"
42          command = "menu_popup help"
43          class = text-menu-item
44        }
45        text {
46          text = "About"
47          command = "menu_popup about"
48          class = text-menu-item
49        }
50      }
51    }
52  }
53}
54
55about {
56  panel {
57    class = overlay
58
59    panel {
60      attach_hcenter = 0
61      attach_vcenter = 0
62      margin_left = 2
63      width = 60
64
65      panel {
66        class = dialog-title
67        image { image = "$$/images/txt-about.png" attach_left = 0 }
68      }
69
70      panel {
71        class = dialog-body
72
73        text { class = br }
74        text { text = "Darkness" class = "dialog-text" }
75        text { class = br }
76        text { text = "Designed & Created by LuxieRayku(luksi.reiku@gmail.com)" class = "dialog-text" }
77        text { text = "Darkness theme is designed to feel clean," class = "dialog-text" }
78        text { text = "light, modern & minimal." class = dialog-text }
79        text { class = br }
80
81        panel {
82          halign = center
83          class = button
84          command = true
85
86          text { text = OK class = button-text }
87        }
88      }
89    }
90  }
91}
92
93help {
94  panel {
95    class = overlay
96
97    panel {
98      attach_hcenter = 0
99      attach_vcenter = 0
100      margin_left = 2
101      width = 48
102
103      panel {
104        class = dialog-title
105        image { image = "$$/images/txt-help.png" attach_left = 0 }
106      }
107
108      panel {
109        class = dialog-body
110
111        text { text = "F1/h - Help" class = dialog-text }
112        text { text = "F2/t - Change theme" class = dialog-text }
113        text { text = "F3/r - Change resolution" class = dialog-text }
114        text { text = "F5/ctrl-x - Finish edit" class = dialog-text }
115        text { text = "F6 - Next window" class = dialog-text }
116        text { text = "F7 - Show folded items" class = dialog-text }
117        text { text = "F8 - Toggle between text and graphic mode" class = dialog-text }
118        text { text = "F9 - Shutdown" class = dialog-text }
119        text { text = "F10 - Reboot" class = dialog-text }
120        text { text = "f - Toggle between folded and unfolded mode" class = dialog-text }
121        text { text = "c - Open terminal" class = dialog-text }
122        text { text = "2 - Open two terminals" class = dialog-text }
123        text { text = "e - Edit current command" class = dialog-text }
124        text { text = "q - Quit graphic mode" class = dialog-text }
125        text { text = "i - Show theme information" class = dialog-text }
126        text { text = "n - Next item with the same class" class = dialog-text }
127        text { text = "w - Next windows item" class = dialog-text }
128        text { text = "u - Next ubuntu item" class = dialog-text }
129        text { text = "ESC - Exit from window or menu" class = dialog-text }
130
131        panel {
132          halign = center
133          class = button
134          command = true
135
136          text { text = OK class = button-text }
137        }
138      }
139    }
140  }
141}
142
143term_window {
144  panel {
145    class = terminal
146    width = 100%
147    height = 100%
148    term {
149      width=100%
150      height=100%
151    }
152  }
153}
154
155two_term {
156  panel {
157    width = 100%
158    height = 100%
159    direction = left_to_right
160
161    panel {
162      class = terminal
163      extend = 1
164
165      term {
166        width=100%
167        height=100%
168      }
169    }
170
171    panel {
172      class = terminal
173      extend = 1
174
175      term {
176        width=100%
177        height=100%
178      }
179    }
180  }
181}
182/*menu {
183  Shutdown {
184    class = "shutdown"
185    group = "group_main"
186    command = "halt"
187  }
188}*/
Note: See TracBrowser for help on using the repository browser.