diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-16 21:15:49 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-16 21:16:34 +0530 |
| commit | 10b2fc13cf342f2276d4107d70d010e8f7ef7d8a (patch) | |
| tree | a558777e861714e5fc23a8d12a8386486580f640 /config.h | |
| parent | 9dc0cc7b2493d0304bd9b5798ebde90ecd9f859e (diff) | |
| download | shotkey-10b2fc13cf342f2276d4107d70d010e8f7ef7d8a.tar.gz shotkey-10b2fc13cf342f2276d4107d70d010e8f7ef7d8a.zip | |
Fixes spawning
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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" }, }; |
