|
Revision 1, 0.7 KB
(checked in by root, 3 years ago)
|
|
Initial commit
|
| Line | |
|---|
| 1 | #ifndef _KEYMAP_H |
|---|
| 2 | #define _KEYMAP_H |
|---|
| 3 | |
|---|
| 4 | #define KEY_NEXT XK_Tab |
|---|
| 5 | #define KEY_NEW XK_Return |
|---|
| 6 | #define KEY_TOPLEFT XK_y |
|---|
| 7 | #define KEY_TOPRIGHT XK_u |
|---|
| 8 | #define KEY_BOTTOMLEFT XK_b |
|---|
| 9 | #define KEY_BOTTOMRIGHT XK_n |
|---|
| 10 | #define KEY_LEFT XK_h |
|---|
| 11 | #define KEY_RIGHT XK_l |
|---|
| 12 | #define KEY_DOWN XK_j |
|---|
| 13 | #define KEY_UP XK_k |
|---|
| 14 | #define KEY_LOWER XK_Insert |
|---|
| 15 | #define KEY_ALTLOWER XK_KP_Insert |
|---|
| 16 | #define KEY_INFO XK_i |
|---|
| 17 | #define KEY_MAXVERT XK_equal |
|---|
| 18 | #define KEY_MAX XK_x |
|---|
| 19 | #ifdef VWM |
|---|
| 20 | # define KEY_FIX XK_f |
|---|
| 21 | # define KEY_PREVDESK XK_Left |
|---|
| 22 | # define KEY_NEXTDESK XK_Right |
|---|
| 23 | #endif |
|---|
| 24 | /* Mixtures of Ctrl, Alt an Escape are used for things like VMWare and |
|---|
| 25 | * XFree86/Cygwin, so the KILL key is an option in the Makefile */ |
|---|
| 26 | #ifndef KEY_KILL |
|---|
| 27 | #define KEY_KILL XK_Escape |
|---|
| 28 | #endif |
|---|
| 29 | |
|---|
| 30 | #endif |
|---|