diff --git a/source/x11-helper.c b/source/x11-helper.c index 33bf593a..a43a760e 100644 --- a/source/x11-helper.c +++ b/source/x11-helper.c @@ -459,8 +459,7 @@ gboolean x11_parse_key ( char *combo, unsigned int *mod, xkb_keysym_t *key ) if ( sym == XKB_KEY_NoSymbol || ( !modmask && ( strchr ( combo, '-' ) || strchr ( combo, '+' ) ) ) ) { g_string_append_printf ( str, "Sorry, rofi cannot understand the key combination: %s\n", combo ); g_string_append ( str, "\nRofi supports the following modifiers:\n\t" ); - g_string_append ( str, "Shift,Control,Alt,AltGR,SuperL,SuperR," ); - g_string_append ( str, "MetaL,MetaR,HyperL,HyperR" ); + g_string_append ( str, "Shift,Control,Alt,Super,Meta,Hyper" ); if ( seen_mod ) { g_string_append ( str, "\n\nMod1,Mod2,Mod3,Mod4,Mod5 are no longer supported, use one of the above." ); }