Files
community-plugins/um5606_fan_state/shortcut.luau
T
Kainoa KanterandGitHub b1f9588bfd ASUS UM5606 Fan State plugin (#21)
* ASUS fan state plugin

* submission guidelines

* fix validation ci

* fix label

* Update plugin.toml

* update thumbnail categories
2026-07-15 20:25:22 -04:00

43 lines
1.4 KiB
Luau

-- ASUS UM5606 Fan State - control-center quick tile.
--
-- This tile holds no fan control logic of its own. It mirrors the bar widget
-- through the plugin's shared state:
-- reads noctalia.state "status" -> { state = ..., available = ... }
-- writes noctalia.state "command" -> "cycle"
local STATES = {
[0] = { label = "Standard", glyph = "car-fan" },
[1] = { label = "Quiet", glyph = "car-fan-1" },
[2] = { label = "High-Performance", glyph = "car-fan-2" },
[3] = { label = "Full", glyph = "car-fan-3" },
}
local available = false
local function applyStatus(status)
local state = type(status) == "table" and tonumber(status.state) or nil
available = type(status) == "table" and status.available and true or false
local info = STATES[state]
if info then
shortcut.setLabel(info.label)
shortcut.setIcon(info.glyph, "car-fan")
shortcut.setActive(state ~= 0)
else
shortcut.setLabel(available and "Unknown" or "Unavailable")
shortcut.setIcon("car-fan", "car-fan")
shortcut.setActive(false)
end
shortcut.setEnabled(available)
end
-- Reflect whatever the service last published, then track live changes.
applyStatus(noctalia.state.get("status"))
noctalia.state.watch("status", applyStatus)
function onClick()
if not available then return end
noctalia.state.set("command", "cycle")
end