I'm trying to bind ctrl+win+p to act as an "UP" arrow key. I'm going to use xbindkeys so first of all I start xbindkeys -k
to see the code for this combination. It gives me such an output:
set@set001:~$ xbindkeys -k
Press combination of keys or/and click under the window.
You can use one of the two lines after "NoCommand"
in $HOME/.xbindkeysrc to bind a key.
"(Scheme function)"
m:0x54 + c:33
Control+Mod2+Mod4 + p
then I'm using this simple macro in ~/.xbindkeysrc
"xte 'key Up'"
Control+Mod2+Mod4 + p
but nothing happens when I'm restarting xbindkeys with killall -s1 xbindkeys ; xbindkeys
and type ctrl+win+p
all other bindings in ~/.xbindkeysrc
working just fine
what am I doing wrong?