I'm currently setting up gestures using Touchegg. Most of them are fairly easy, but I want to bind Fn+F11 which is causing me some trouble.
As far as I understand it FN is not an actual key, but more of a physical switch for my laptop, so it doesn't have an actual "Key" I can use as a modifier in my settings.
Using xev
I managed to print out the output of my keypresses, but I'm unsure how to use it in my configuration:
Pressing and releasing F11
FocusOut event, serial 38, synthetic NO, window 0x3e00001,
mode NotifyGrab, detail NotifyAncestor
FocusIn event, serial 38, synthetic NO, window 0x3e00001,
mode NotifyUngrab, detail NotifyAncestor
Pressing and releasing Fn+F11
KeyPress event, serial 38, synthetic NO, window 0x3e00001,
root 0x1c9, subw 0x0, time 17878429, (-72,69), root:(799,536),
state 0x0, keycode 95 (keysym 0xffc8, F11), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x3e00001,
root 0x1c9, subw 0x0, time 17878519, (-72,69), root:(799,536),
state 0x0, keycode 95 (keysym 0xffc8, F11), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
Any idea what key combination I should use?