diff --git a/config.def.h b/config.def.h index 2e33984..0c78102 100644 --- a/config.def.h +++ b/config.def.h @@ -58,7 +58,11 @@ typedef struct { const char *name; const void *cmd; } Sp; +#ifdef LAPTOP +const char *spcmd1[] = {"st", "-n", "spterm", "-g", "80x24", NULL }; +#else const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL }; +#endif const char *spcmd2[] = {"st", "-n", "spranger", "-g", "144x41", "-e", "ranger", NULL }; //const char *spcmd2[] = {"st", "-n", "sppcmanfm", "-g", "144x41", "-e", "/home/slococo/launchPcmanfm", NULL }; //const char *spcmd2[] = {"pcmanfm", NULL }; @@ -128,7 +132,11 @@ static const Layout layouts[] = { }; /* key definitions */ +#ifdef LAPTOP +#define MODKEY Mod4Mask +#else #define MODKEY Mod1Mask +#endif #define TAGKEYS(KEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \