diff --git a/Applications/Events.app/Icon.pic b/Applications/Events.app/Icon.pic index 4c75319a..dc9b17bb 100644 Binary files a/Applications/Events.app/Icon.pic and b/Applications/Events.app/Icon.pic differ diff --git a/Applications/Events.app/Main.lua b/Applications/Events.app/Main.lua index 3e75fc82..83ce8a99 100644 --- a/Applications/Events.app/Main.lua +++ b/Applications/Events.app/Main.lua @@ -6,10 +6,13 @@ local text = require("Text") --------------------------------------------------------------------------------- -local workspace, window, menu = system.addWindow(GUI.filledWindow(1, 1, 82, 28, 0x000000, 0.3)) +local workspace, window, menu = system.addWindow(GUI.filledWindow(1, 1, 82, 28, 0x1E1E1E)) local display = window:addChild(GUI.object(2, 4, 1, 1)) -local lines = {} + +local lines = { + "Ready for interaction" +} display.draw = function(display) if #lines == 0 then @@ -19,7 +22,7 @@ display.draw = function(display) local y = display.y + display.height - 1 for i = #lines, math.max(#lines - display.height, 1), -1 do - screen.drawText(display.x, y, 0xFFFFFF, lines[i]) + screen.drawText(display.x, y, 0xE1E1E1, lines[i]) y = y - 1 end end diff --git a/Installer/Files.cfg b/Installer/Files.cfg index 0364aecb..736bd155 100644 --- a/Installer/Files.cfg +++ b/Installer/Files.cfg @@ -422,15 +422,7 @@ }, "Applications/Shooting.app/Icon.pic", - -- Reinstall OS - { - path = "Applications/Reinstall OS.app/Main.lua", - id = 1055, - shortcut = true - }, - "Applications/Reinstall OS.app/Icon.pic", - - -- Lua interpreter + -- Lua { path = "Applications/Lua.app/Main.lua", id = 1077, diff --git a/Libraries/System.lua b/Libraries/System.lua index 836a5f1e..225293eb 100755 --- a/Libraries/System.lua +++ b/Libraries/System.lua @@ -34,7 +34,6 @@ local desktopMenuLayout local desktopMenuMineOSItem local desktopIconField local desktopBackground -local desktopBackgroundColor = 0x1E1E1E local desktopBackgroundWallpaperX local desktopBackgroundWallpaperY @@ -2293,7 +2292,7 @@ function system.execute(path, ...) end local function desktopBackgroundAmbientDraw() - screen.drawRectangle(1, desktopBackground.y, desktopBackground.width, desktopBackground.height, desktopBackgroundColor, 0, " ") + screen.drawRectangle(1, desktopBackground.y, desktopBackground.width, desktopBackground.height, userSettings.interfaceColorDesktopBackground or 0x1E1E1E, 0, " ") end function system.updateWallpaper()