diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-17 15:34:19 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-17 15:34:19 +0530 |
| commit | b178d1915d2578609be57a07ca32b36a26bac93b (patch) | |
| tree | 92dcc16a4e256fcc5a369d501e7d945519c42988 /config.h | |
| parent | c10ffd35a292976a1e3c42c087788d8f694c1e3e (diff) | |
| download | shotkey-b178d1915d2578609be57a07ca32b36a26bac93b.tar.gz shotkey-b178d1915d2578609be57a07ca32b36a26bac93b.zip | |
cleanup
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ // Shell static char shell[] = "/bin/sh"; -#define MOD Mod1Mask +#define Super Mod1Mask enum { Music, @@ -25,9 +25,9 @@ static Key modes[MODE_SIZE][10] = { // Define normal mode key bindings here static Key keys[] = { - { MOD|ShiftMask, XK_y, cmd("notify-send hello") }, - { MOD|ShiftMask, XK_z, mode(Music, False) }, - { MOD|ShiftMask, XK_x, mode(Bright, True) }, + { Super|ShiftMask, XK_y, cmd("notify-send hello") }, + { Super|ShiftMask, XK_z, mode(Music, False) }, + { Super|ShiftMask, XK_x, mode(Bright, True) }, }; static ModeProperties mode_properties[MODE_SIZE] = { |
