mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-21 03:29:22 +01:00
15 lines
378 B
Lua
Executable File
15 lines
378 B
Lua
Executable File
|
|
local system = require("System")
|
|
|
|
local workspace, icon, menu = select(1, ...), select(2, ...), select(3, ...)
|
|
|
|
menu:addItem(system.localization.setAsWallpaper).onTouch = function()
|
|
system.properties.interfaceWallpaperEnabled = true
|
|
system.properties.interfaceWallpaperPath = icon.path
|
|
|
|
system.updateWallpaper()
|
|
workspace:draw()
|
|
|
|
system.saveProperties()
|
|
end
|