diff options
author | 2022-02-06 17:05:13 +0100 | |
---|---|---|
committer | 2022-02-06 17:05:13 +0100 | |
commit | 343a754ede81c98e97b1afbb0697ecf2638fd4ff (patch) | |
tree | 2ee31dd3b6caa1dfe646bd28695f494256c5fb74 | |
parent | 48b0fec6ffee3c9cd1e1fac463c9943c3e524a97 (diff) | |
download | dwm-343a754ede81c98e97b1afbb0697ecf2638fd4ff.tar.gz dwm-343a754ede81c98e97b1afbb0697ecf2638fd4ff.zip |
Add Pidgin to ruels
-rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 623e2cb..8808846 100644 --- a/config.def.h +++ b/config.def.h @@ -29,6 +29,7 @@ static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + { "Pidgin", NULL, NULL, 1 << 8, 1, -1 }, }; /* layout(s) */ @@ -59,7 +60,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; -static const char *termcmd[] = { "mate-terminal", NULL }; +static const char *termcmd[] = { "st", NULL }; static Key keys[] = { /* modifier key function argument */ |