forked from PedroAlvesV/AbsTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbig_image_source.lua
More file actions
33 lines (28 loc) · 880 Bytes
/
big_image_source.lua
File metadata and controls
33 lines (28 loc) · 880 Bytes
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
local abstk = require 'abstk'
abstk.set_mode(...)
local scr = abstk.new_screen("Software Selection")
local message = "At the moment, only the core of the system is installed. You may want to install some of the softwares listed below."
scr:add_label('message', message)
scr:create_selector('installation_type', "Installation type:",
{
"Default",
"Full",
"Custom",
}
)
local software_list = {
{"Desktop environment", true},
{"... GNOME", true},
{"... XFCE", false},
{"... KDE", false},
{"... Cinnamon", false},
{"... MATE", false},
{"... LXDE", false},
{"Web Server", false},
{"Print Server", true},
{"SSH Server", false},
{"Standard System Utilities", true},
}
scr:create_checklist('software_checklist', "Choose softwares to install:", software_list)
scr:add_label('space_required', "Space required: 20.8MB")
scr:run()