Usando a tecla Menu como tecla Compose no Ubuntu 15.04 aparece um menu

1

Configurei minha tecla de composição para ser o Tecla Menu como em esta questão . No entanto, em vez de (ou talvez além de?) Obter o comportamento de composição, quando pressiono a tecla Menu, aparece o menu de contexto (o menu que você normalmente obteria com o botão direito).

Isso agora acontece no Chrome e no gnome-terminal, por isso estou assumindo que é um recurso de todo o sistema. Ele costumava funcionar bem em 14.04 (não tenho certeza sobre 14.10).

Como sobrescrever / desabilitar isso para que eu possa usar o Menu como a tecla Compor?

Caso seja importante: estou usando o Xmonad, não o Unity.

xev output para a tecla Menu:

KeyPress event, serial 33, synthetic NO, window 0x2800001,
    root 0x1d7, subw 0x0, time 49369104, (497,344), root:(1690,368),
    state 0x10, keycode 135 (keysym 0xff67, Menu), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 33, synthetic NO, window 0x2800001,
    root 0x1d7, subw 0x0, time 49369216, (497,344), root:(1690,368),
    state 0x10, keycode 135 (keysym 0xff67, Menu), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

xmodmap output:

xmodmap:  up to 4 keys per modifier, (keycodes in parentheses):

shift       Shift_L (0x32),  Shift_R (0x3e)
lock        Caps_Lock (0x42)
control     Control_L (0x25),  Control_R (0x69)
mod1        Alt_L (0x40),  Alt_R (0x6c),  Meta_L (0xcd)
mod2        Num_Lock (0x4d)
mod3      
mod4        Super_L (0x85),  Super_R (0x86),  Super_L (0xce),  Hyper_L (0xcf)
mod5        ISO_Level3_Shift (0x5c),  Mode_switch (0xcb)
    
por Thomas 04.05.2015 / 18:01

1 resposta

0

Como eu disse aqui , use esta configuração: ['compose:menu'] in org.gnome.desktop.input-sources > %código%. Testado com o Ubuntu 15.04 e xmonad.

Com esta configuração:

% xev
KeyPress event, serial 36, synthetic NO, window 0x1600001,
    root 0x233, subw 0x0, time 38683999, (93,83), root:(138,192),
    state 0x10, keycode 135 (keysym 0xff20, Multi_key), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: True

KeyRelease event, serial 36, synthetic NO, window 0x1600001,
    root 0x233, subw 0x0, time 38684071, (93,83), root:(138,192),
    state 0x10, keycode 135 (keysym 0xff20, Multi_key), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

Sem essa configuração:

% xev
KeyPress event, serial 36, synthetic NO, window 0x1600001,
    root 0x233, subw 0x0, time 38796879, (476,270), root:(521,379),
    state 0x10, keycode 135 (keysym 0xff67, Menu), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 36, synthetic NO, window 0x1600001,
    root 0x233, subw 0x0, time 38796951, (476,270), root:(521,379),
    state 0x10, keycode 135 (keysym 0xff67, Menu), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False
    
por A.B. 04.05.2015 / 18:19