You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the same manner the BUILD_MOUSE_EVENTS adds support, do you think keyboard support (BUILD_KEYBOARD_EVENTS) would be beneficial to add to conky?
It's fairly straightforward to add to X11 now that mouse events are more or less worked out.
The way I envision this feature to work is through adding another lua hook to the script for handling keyboard events. Conky would only receive keyboard events while the pointer is over it (regardless of whether WM/DE window focus follows cursor).
I have figured out how to add both mouse and keyboard events to Wayland backend as well:
luarelated to Lua integration in conkyfeaturesuggest addition of new functionality that isn't currently supported in any way
1 participant
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In the same manner the
BUILD_MOUSE_EVENTS
adds support, do you think keyboard support (BUILD_KEYBOARD_EVENTS
) would be beneficial to add to conky?It's fairly straightforward to add to X11 now that mouse events are more or less worked out.
The way I envision this feature to work is through adding another lua hook to the script for handling keyboard events. Conky would only receive keyboard events while the pointer is over it (regardless of whether WM/DE window focus follows cursor).
I have figured out how to add both mouse and keyboard events to Wayland backend as well:
KeyboardInteractivity::Exclusive
andKeyboardInteractivity::None
with:zwlr_layer_surface_v1::set_keyboard_interactivity
.KeyboardInteractivity::OnDemand
(hyprland, others?)Beta Was this translation helpful? Give feedback.
All reactions