aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h
index 0eb9efd..46f065f 100644
--- a/config.h
+++ b/config.h
@@ -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] = {