diff --git a/config.h b/config.h index 6a41e32..7b1e198 100644 --- a/config.h +++ b/config.h @@ -1,21 +1,18 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 0; /* border pixel of windows */ +static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "monospace:size=10" }; -static const char dmenufont[] = "Inconsolata:size=10"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#000000"; -static const char col_gray3[] = "#FFFFFF"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#222222"; +static const char *fonts[] = { "Cherry:size=10" }; +static const char col_green[] = "#00FF00"; +static const char col_lightgray[] = "#eeeeee"; +static const char col_black[] = "#000000"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { col_green, col_black, col_black }, + [SchemeSel] = { col_lightgray, col_black, col_green }, }; /* tagging */ @@ -26,9 +23,10 @@ static const Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + /* class instance title tags mask isfloating monitor */ + { "Nextcloud", NULL, NULL, 1 << 8, 0, -1 }, + + }; /* layout(s) */ diff --git a/drw.o b/drw.o index 58349c9..db93e5e 100644 Binary files a/drw.o and b/drw.o differ diff --git a/dwm b/dwm index 82de355..ffcb0f2 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.o b/dwm.o index 0fc1b96..7942041 100644 Binary files a/dwm.o and b/dwm.o differ diff --git a/util.o b/util.o index 12c3b0a..59a0745 100644 Binary files a/util.o and b/util.o differ