diff options
author | joe <rbo@gmx.us> | 2025-10-13 17:25:08 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-13 17:25:08 +0200 |
commit | ed853c574add66428fb03996910d4f0e712d1b58 (patch) | |
tree | 3340cf2d190555d8228bad9851220ef880346142 /config.def.h | |
parent | up (diff) | |
download | dwm-ed853c574add66428fb03996910d4f0e712d1b58.tar.gz dwm-ed853c574add66428fb03996910d4f0e712d1b58.tar.bz2 dwm-ed853c574add66428fb03996910d4f0e712d1b58.tar.xz dwm-ed853c574add66428fb03996910d4f0e712d1b58.tar.zst dwm-ed853c574add66428fb03996910d4f0e712d1b58.zip |
Diffstat (limited to '')
-rw-r--r-- | config.def.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/config.def.h b/config.def.h index 59a6f8d..73b3cda 100644 --- a/config.def.h +++ b/config.def.h @@ -33,11 +33,11 @@ typedef struct { const char *name; const void *cmd; } Sp; -const char *spcmd1[] = { "st", "-n", "spnews", "-e", "sf", NULL }; -const char *spcmd2[] = { "st", "-n", "spmu", "-e", "cmus", NULL }; -const char *spcmd3[] = { "st", "-n", "spterm1", NULL }; -const char *spcmd4[] = { "st", "-n", "spterm2", NULL }; -const char *spcmd5[] = { "st", "-n", "spmail", "-e", "neomutt", NULL }; +const char *spcmd1[] = { "st", "-n", "spnews", "-g", "165x25", "-e", "sf", NULL }; +const char *spcmd2[] = { "st", "-n", "spmu", "-g", "100x28", "-e", "cmus", NULL }; +const char *spcmd3[] = { "st", "-n", "spterm1", "-g", "80x25", NULL }; +const char *spcmd4[] = { "st", "-n", "spterm2", "-g", "80x25", NULL }; +const char *spcmd5[] = { "st", "-n", "spmail", "-g", "120x25", "-e", "neomutt", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spnews", spcmd1}, @@ -107,11 +107,11 @@ static const Rule rules[] = { { "Vmware", NULL, NULL, 1 << 3, 0, 0, 0, 2 }, { "teams-for-linux", NULL, NULL, 0, 0, 0, 0, 1 }, { "thunderbird", NULL, NULL, 1 << 2, 0, 0, 0, 1 }, - { NULL, "spnews", NULL, SPTAG(0), 0, 1, 0, -1 }, + { NULL, "spnews", NULL, SPTAG(0), 1, 1, 0, -1 }, { NULL, "spmu", NULL, SPTAG(1), 1, 1, 0, -1 }, - { NULL, "spterm1", NULL, SPTAG(2), 0, 0, 0, -1 }, - { NULL, "spterm2", NULL, SPTAG(3), 0, 0, 0, -1 }, - { NULL, "spmail", NULL, SPTAG(4), 0, 0, 0, -1 }, + { NULL, "spterm1", NULL, SPTAG(2), 1, 0, 0, -1 }, + { NULL, "spterm2", NULL, SPTAG(3), 1, 0, 0, -1 }, + { NULL, "spmail", NULL, SPTAG(4), 1, 0, 0, -1 }, }; /* layout(s) */ @@ -199,7 +199,7 @@ static const Key keys[] = { { MODKEY, XK_Return, spawn, {.v = term_cmd } }, { MODKEY|ControlMask|ShiftMask, XK_Return, spawn, {.v = hardflip_cmd } }, { MODKEY|ControlMask, XK_Return, dmenuspawn, {.v = dmapps_cmd } }, - { MODKEY, XK_F1, spawn, {.v = term_cmd } }, + { MODKEY, XK_F1, spawn, {.v = fm_cmd } }, { MODKEY, XK_F2, spawn, {.v = fm_cmd } }, { MODKEY|ShiftMask, XK_F2, spawn, {.v = guifm_cmd } }, { MODKEY, XK_F3, spawn, {.v = browser_cmd } }, |