Prevent modifier keys being stuck on Super + C / V / X

This commit is contained in:
Ryan Hughes
2026-05-12 22:41:27 -04:00
parent d932f47eaf
commit be55e8048c
2 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
command = 'wl-copy && (hyprctl dispatch "hl.dsp.send_shortcut({ mods = \"SHIFT\", key = \"Insert\" })" || hyprctl dispatch sendshortcut "SHIFT, Insert,")'
command = 'wl-copy && ((hyprctl dispatch "hl.dsp.send_key_state({ mods = \"SHIFT\", key = \"Insert\", state = \"down\", window = \"activewindow\" })" && sleep 0.05 && hyprctl dispatch "hl.dsp.send_key_state({ mods = \"SHIFT\", key = \"Insert\", state = \"up\", window = \"activewindow\" })") || hyprctl dispatch sendshortcut "SHIFT, Insert, activewindow")'