mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
8 lines
328 B
Lua
8 lines
328 B
Lua
local component = require("component")
|
|
local term = require("term")
|
|
component.gpu.setBackground(_G.OSSettings.shellBackground or 0x1B1B1B)
|
|
component.gpu.setForeground(_G.OSSettings.shellBackground or 0xEEEEEE)
|
|
|
|
local width, height = component.gpu.getResolution()
|
|
component.gpu.fill(1, 1, width, height, " ")
|
|
term.setCursor(1, 1) |