From b178d1915d2578609be57a07ca32b36a26bac93b Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Wed, 17 Jun 2020 15:34:19 +0530 Subject: cleanup --- config.h | 8 ++++---- 1 file 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] = { -- cgit v1.3.1