aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/config.h b/config.h
index 1989e9b..853b0cf 100644
--- a/config.h
+++ b/config.h
@@ -3,8 +3,18 @@ static char shell[] = "sh";
#define MOD Mod1Mask
+enum {
+ Music,
+MODE_SIZE };
+
+static Key modes[MODE_SIZE][5] = {
+ [Music] = {
+ { MOD|ShiftMask, XK_m, cmd("notify-send inside") },
+ },
+};
+
static Key keys[] = {
- { MOD|ShiftMask, XK_y, "notify-send hello" },
- { MOD|ShiftMask, XK_z, "~/scripts/notify.sh wow" },
+ { MOD|ShiftMask, XK_y, cmd("notify-send hello") },
+ { MOD|ShiftMask, XK_z, mode(Music) },
};