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