Add support for local keybinds

Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
AnErrupTion
2026-03-17 22:58:39 +01:00
parent a89c918c5d
commit acac884cfe
16 changed files with 87 additions and 40 deletions

View File

@@ -27,6 +27,7 @@ pub fn init(
pub fn widget(self: *Cascade) Widget {
return Widget.init(
"Cascade",
null,
self,
null,
null,

View File

@@ -69,6 +69,7 @@ pub fn init(
pub fn widget(self: *ColorMix) Widget {
return Widget.init(
"ColorMix",
null,
self,
null,
null,

View File

@@ -76,6 +76,7 @@ pub fn init(
pub fn widget(self: *Doom) Widget {
return Widget.init(
"Doom",
null,
self,
deinit,
realloc,

View File

@@ -430,6 +430,7 @@ pub fn init(
pub fn widget(self: *DurFile) Widget {
return Widget.init(
"DurFile",
null,
self,
deinit,
realloc,

View File

@@ -86,6 +86,7 @@ pub fn init(
pub fn widget(self: *GameOfLife) Widget {
return Widget.init(
"GameOfLife",
null,
self,
deinit,
realloc,

View File

@@ -83,6 +83,7 @@ pub fn init(
pub fn widget(self: *Matrix) Widget {
return Widget.init(
"Matrix",
null,
self,
deinit,
realloc,