mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-24 04:52:48 +01:00
11 lines
378 B
Lua
Executable File
11 lines
378 B
Lua
Executable File
local computer = require("computer")
|
|
local MineOSCore = require("MineOSCore")
|
|
|
|
local icon, menu = args[1], args[2]
|
|
menu:addItem(MineOSCore.localization.setAsWallpaper).onTouch = function()
|
|
MineOSCore.properties.wallpaperEnabled = true
|
|
MineOSCore.properties.wallpaper = icon.path
|
|
MineOSCore.saveProperties()
|
|
computer.pushSignal("MineOSCore", "updateWallpaper")
|
|
end
|