Use LAPTOP flag
This commit is contained in:
parent
239e1bef6c
commit
0e4e016e43
|
@ -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} }, \
|
||||
|
|
Loading…
Reference in New Issue