From 1ab1cbdc93529b52814e681a575a7f29a5579cdc Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sun, 9 Nov 2014 19:25:13 -0700 Subject: [PATCH] increase font size for 3200x1800 resolution --- dwm.config.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dwm.config.h b/dwm.config.h index d969f3b..73894ec 100644 --- a/dwm.config.h +++ b/dwm.config.h @@ -3,7 +3,8 @@ #include /*Needed for mulitmedia keys*/ /* appearance */ -static const char font[] = "Inconsolata:size=9"; +//static const char font[] = "Ohsnap.Icons:size=12"; +static const char font[] = "Inconsolata-12"; static const char normbordercolor[] = "#444444"; static const char normbgcolor[] = "#222222"; static const char normfgcolor[] = "#bbbbbb"; @@ -21,7 +22,7 @@ static const char *tags[] = { "term", "coms", "www", "dev", "work", "6", "7", "8 static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, True, -1 }, - { "Firefox", NULL, NULL, 1 << 8, False, -1 }, + { "Firefox", NULL, NULL, 1, False, -1 }, }; /* layout(s) */ @@ -48,7 +49,7 @@ static const Layout layouts[] = { #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } /* commands */ -static const char *dmenucmd[] = { "dmenu_run", "-fn", "Inconsolata-9", "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-fn", "Inconsolata-12", "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; static const char *termcmd[] = { "termite", NULL }; /*functions for volume control*/ static const char *upvol[] = { "amixer", "sset", "Master", "1%+", NULL};