aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/config.h b/config.h
index 1a802ec..65e0766 100644
--- a/config.h
+++ b/config.h
@@ -1,8 +1,10 @@
+// Shell
+static char shell[] = "sh";
-#define MOD Mod1Mask
+#define MOD Mod1Mask|ShiftMask
static Key keys[] = {
- { MOD | ShiftMask, XK_y, "notify-send hello" },
- { MOD | ShiftMask, XK_z, "sh -c '~/scripts/notify.sh wow'" },
+ { MOD, XK_y, "notify-send hello" },
+ { MOD, XK_z, "~/scripts/notify.sh wow" },
};