<pleq>
Hello, I'm trying to configure keybindings so that on press and release of Super_L, it launches fuzzel, but if something else if pressed, it does not launch fuzzel on release.
<pleq>
I wanted to try to do it by entering supe-mode when Super_L is pressed, and every keybinding with Super+Key does something then exits supe-mode, including releasing Supe_L to launch fuzzel.
<pleq>
is there some way for this to be done?
<pleq>
if the options like 'move' are scripts, I can maybe put them into spawn, like this?
<pleq>
riverctl map supe Super+K spawn "bash -c "bunch of stuff"; enter normal-mode"
<pleq>
but I don't know how to do things like 'move' with spawn
<pleq>
riverctl map supe Super+K spawn "move up 100; enter normal-mode"
<leon-p>
the spawn command executes whatever you give it with "sh -c". "move up 100" is not a shell command, it's a river command, so you'll have to use riverctl inside the spawn
<pleq>
oh i see, thank you
Ireozar has quit [Read error: Connection reset by peer]
pleq has quit [Quit: Client closed]
Ireozar has joined #river
pleq has joined #river
<pleq>
supe mode thing is not working for me, anyone know why? here's a snippet of my config:
<pleq>
riverctl map normal Super_L enter mode-supe
<pleq>
riverctl map supe Super F spawn "riverctl toggle-float; riverctl enter mode-normal"