From 10b2fc13cf342f2276d4107d70d010e8f7ef7d8a Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 16 Jun 2020 21:15:49 +0530 Subject: Fixes spawning --- config.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'config.h') 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" }, }; -- cgit v1.3.1