aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-16 21:15:49 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-16 21:16:34 +0530
commit10b2fc13cf342f2276d4107d70d010e8f7ef7d8a (patch)
treea558777e861714e5fc23a8d12a8386486580f640 /config.h
parent9dc0cc7b2493d0304bd9b5798ebde90ecd9f859e (diff)
downloadshotkey-10b2fc13cf342f2276d4107d70d010e8f7ef7d8a.tar.gz
shotkey-10b2fc13cf342f2276d4107d70d010e8f7ef7d8a.zip
Fixes spawning
Diffstat (limited to 'config.h')
-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" },
};