]> git.sur5r.net Git - i3/i3/commit
Implement support for using key symbols in configuration file
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 7 Aug 2009 13:35:12 +0000 (15:35 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 7 Aug 2009 13:35:12 +0000 (15:35 +0200)
commit7cdaa1b277fa2104ccf3b6fb1efc602aae454c02
tree51a37802e97cafa0ffd50078c38d22e88e120543
parent3bd724f08db431aebeff3d889ee6eb8b214fb099
Implement support for using key symbols in configuration file

Use "bindsym" instead of "bind". You have to use the names of keys
as in xmodmap. To get a list of currently bounud symbols, use
xmodmap -pke

Technical quirk: Xlib generated MappingNotify events upon
XkbMapNotify events (from XKB, as the name says). XCB does not yet
have support for XKB, thus we need to select and handle the event
by ourself. Hopefully, this will change in the future.
include/config.h
include/data.h
include/handlers.h
include/i3.h
src/config.c
src/handlers.c
src/mainx.c