Develop 1.8 #20

Merged
Kan18 merged 242 commits from develop-1.8 into master-1.8 2019-11-10 20:52:08 -05:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 517376db28 - Show all commits

View File

@@ -396,6 +396,12 @@ local config = {
Config.load('shellprompt', config)
local _colors = config.color
-- temp
if not _colors.backgroundColor then
_colors.backgroundColor = colors.black
_colors.fileColor = colors.white
end
if not term.isColor() then
_colors = { }
for k, v in pairs(config.color) do

View File

@@ -32,6 +32,12 @@ for k, v in pairs(defaults) do
table.insert(allSettings, { name = k })
end
-- temp
if not _colors.backgroundColor then
_colors.backgroundColor = colors.black
_colors.fileColor = colors.white
end
local tab = UI.Tab {
tabTitle = 'Shell',
description = 'Shell option',