1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-28 22:27:39 +00:00

control-q instead of q for exitting apps + grid column override colors

This commit is contained in:
kepler155c@gmail.com
2019-07-02 14:11:33 -04:00
parent 1dcb6d67b7
commit 6ba458646f
8 changed files with 28 additions and 12 deletions

View File

@@ -19,6 +19,13 @@ local passwordIntro = [[A password is required for wireless access.
local packagesIntro = [[Setup Complete
%sOpen the package manager to add software to this computer.]]
local contributorsIntro = [[Contributors%s
Anavrins: Encryption/security/custom apps
Community: Several selected applications
hugeblank: Startup screen improvements
LDDestroier: Art design + custom apps
Lemmmy: Application improvements]]
local page = UI.Page {
wizard = UI.Wizard {
@@ -95,6 +102,15 @@ local page = UI.Page {
value = string.format(packagesIntro, Ansi.white),
},
},
contributors = UI.WizardPage {
index = 5,
intro = UI.TextArea {
textColor = colors.yellow,
inactive = true,
x = 3, ex = -3, y = 2, ey = -2,
value = string.format(contributorsIntro, Ansi.white),
},
},
},
},
notification = UI.Notification { },