|
1234567891011121314151617181920212223242526272829303132333435 |
- Description: Modified command and rules to use Debian specific tools
- By default dwm uses uxterm as terminal emulator
- this is modified now to use x-terminal-emulator
- command instead.
- .
- Also patch modifies class rules to use Iceweasel instead of Firefox
- as that is the replacement for Firefox on Debian system.
- Author: Vasudev Kamath <kamathvasudev@gmail.com>
- Forwarded: not-needed
- Last-Update: 2016-03-25
- --- a/config.def.h 2016-03-26 22:54:02.066831758 +0100
- +++ b/config.def.h 2016-03-26 22:54:20.974134262 +0100
- @@ -26,7 +26,7 @@
- */
- /* class instance title tags mask isfloating monitor */
- { "Gimp", NULL, NULL, 0, 1, -1 },
- - { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
- + { "Iceweasel", NULL, NULL, 1 << 8, 0, -1 },
- };
-
- /* layout(s) */
- @@ -55,7 +55,7 @@
- /* commands */
- static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
- static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
- -static const char *termcmd[] = { "st", NULL };
- +static const char *termcmd[] = { "x-terminal-emulator", NULL };
-
- static Key keys[] = {
- /* modifier key function argument */
- @@ -110,4 +110,3 @@
- { ClkTagBar, MODKEY, Button1, tag, {0} },
- { ClkTagBar, MODKEY, Button3, toggletag, {0} },
- };
- -
|