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
If @ is added at the beginning of the keysym, the command will be run on key release events, otherwise on key press events.
If ~ is added at the beginning of the keysym, the captured event will be replayed for the other clients.
In the config_devel branch, we've already implemented checking for those prefixes.
As you can see in the struct KeyBinding, there are two bool items send and on_release.
Calling .is_send() or is_on_release() method on struct KeyBinding or Hotkey returns the value respectively.
Need help to actually implement this feature to daemon.rs
The text was updated successfully, but these errors were encountered:
In sxhkd man page:
In the
config_devel
branch, we've already implemented checking for those prefixes.As you can see in the struct
KeyBinding
, there are two bool itemssend
andon_release
.Calling
.is_send()
oris_on_release()
method on structKeyBinding
orHotkey
returns the value respectively.Need help to actually implement this feature to
daemon.rs
The text was updated successfully, but these errors were encountered: