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
commit acac884cfe
No known key found for this signature in database
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,