Files
nix-dotfiles-v2/home/noctalia-plugins/osk/plugin.toml
T

71 lines
1.3 KiB
TOML

id = "local/osk"
name = "wvkbd Toggle"
version = "0.2.0"
min_noctalia = "5.0.0"
author = "local"
description = "Bar button to toggle the wvkbd on-screen keyboard with style options."
icon = "keyboard"
[[widget]]
id = "toggle"
entry = "toggle.luau"
# Geometry & alpha
[[widget.setting]]
key = "height"
type = "int"
label = "Landscape height (px)"
default = 200
[[widget.setting]]
key = "rounding"
type = "int"
label = "Corner rounding (px)"
default = 10
[[widget.setting]]
key = "alpha"
type = "int"
label = "Alpha (0-255)"
default = 236
min = 0
max = 255
# Colors — raw wvkbd format: rrggbb or rrggbbaa (no leading #)
[[widget.setting]]
key = "bg"
type = "string"
label = "Background color (rrggbb|aa)"
default = ""
[[widget.setting]]
key = "fg"
type = "string"
label = "Key color (rrggbb|aa)"
default = ""
[[widget.setting]]
key = "press"
type = "string"
label = "Pressed key color (rrggbb|aa)"
default = ""
[[widget.setting]]
key = "text"
type = "string"
label = "Key text color (rrggbb|aa)"
default = ""
# Layers & behavior
[[widget.setting]]
key = "layers"
type = "string"
label = "Layers (comma-separated, e.g. full,emoji)"
default = ""
[[widget.setting]]
key = "non_exclusive"
type = "bool"
label = "Non-exclusive (float over windows)"
default = false