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

@ -49,6 +49,7 @@ pub fn deinit(self: *InfoLine) void {
pub fn widget(self: *InfoLine) Widget {
return Widget.init(
"InfoLine",
null,
self,
deinit,
null,

View file

@ -58,6 +58,7 @@ pub fn deinit(self: *Session) void {
pub fn widget(self: *Session) Widget {
return Widget.init(
"Session",
null,
self,
deinit,
null,

View file

@ -92,6 +92,7 @@ pub fn deinit(self: *UserList) void {
pub fn widget(self: *UserList) Widget {
return Widget.init(
"UserList",
null,
self,
deinit,
null,