aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-17 15:34:19 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-17 15:34:19 +0530
commitb178d1915d2578609be57a07ca32b36a26bac93b (patch)
tree92dcc16a4e256fcc5a369d501e7d945519c42988 /config.h
parentc10ffd35a292976a1e3c42c087788d8f694c1e3e (diff)
downloadshotkey-b178d1915d2578609be57a07ca32b36a26bac93b.tar.gz
shotkey-b178d1915d2578609be57a07ca32b36a26bac93b.zip
cleanup
Diffstat (limited to 'config.h')
-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] = {