Use LAPTOP flag

This commit is contained in:
Santiago Lo Coco 2022-01-27 04:08:40 +00:00
parent 239e1bef6c
commit 0e4e016e43
1 changed files with 8 additions and 0 deletions

View File

@ -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} }, \