diff options
Diffstat (limited to '')
| -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" }, }; |
