M => +1 -1
@@ 3,7 3,7 @@ static int centered = 1; /* -c option; centers dmenu on scree
static int min_width = 400; /* minimum width when centered */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"Tamzen:pixelsize=17:antialias=true:autohint=true",
"TamzenForPowerline:style=Regular:pixelsize=16:antialias=true:autohint=true",
"JoyPixels:pixelsize=12:antialias=true:autohint=true"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
M => +0 -0
M => +0 -0
M => +0 -0
M => +0 -0
M => +0 -0
M => +0 -0
M dwm-anybar/config.h => dwm-anybar/config.h +8 -7
@@ 7,10 7,10 @@ static const unsigned int snap = 10; /* snap pixel */
//static const unsigned int gappiv = 30; /* vert inner gap between windows */
//static const unsigned int gappoh = 50; /* horiz outer gap between windows and screen edge */
//static const unsigned int gappov = 50; /* vert outer gap between windows and screen edge */
-static const unsigned int gappih = 5; /* horiz inner gap between windows */
-static const unsigned int gappiv = 5; /* vert inner gap between windows */
-static const unsigned int gappoh = 5; /* horiz outer gap between windows and screen edge */
-static const unsigned int gappov = 5; /* vert outer gap between windows and screen edge */
+static const unsigned int gappih = 30; /* horiz inner gap between windows */
+static const unsigned int gappiv = 30; /* vert inner gap between windows */
+static const unsigned int gappoh = 50; /* horiz outer gap between windows and screen edge */
+static const unsigned int gappov = 50; /* vert outer gap between windows and screen edge */
static const int smartgaps = 1; /* 1 means no outer gap when there is only one window */
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
static const int showbar = 1; /* 0 means no bar */
@@ 19,8 19,9 @@ static const int usealtbar = 1; /* 1 means use non-dwm status ba
static const char *altbarclass = "Polybar"; /* Alternate bar class name */
static const char *alttrayname = "tray"; /* Polybar tray instance name */
static const char *altbarcmd = /*"/home/adrian/.config/polybar/launch_polybar.sh";*/""; /* Alternate bar launch command */
-static const char *fonts[] = { "Terminus:size=12:antialias=true", "JoyPixels:pixelsize=11:antialias=true" };
-static const char dmenufont[] = "Terminus:size=12";
+/* static const char *fonts[] = { "DroidSansMono Nerd Font:style=Book:pixelsize=11:antialias=true:autohint=true", "JoyPixels:pixelsize=11:antialias=true" }; */
+static const char *fonts[] = { "TamzenForPowerline:style=Regular:pixelsize=16:antialias=true:autohint=true" };
+static const char dmenufont[] = "DroidSansMono Nerd Font:style=Book:pixelsize=11:antialias=true:autohint=true";
/* Horizon Dark Colors */
static const char col_gray1[] = "#1c1e26";
@@ 56,7 57,7 @@ static const Rule rules[] = {
/* class instance title tags mask isfloating isterminal noswallow monitor */
{ "Gimp", NULL, NULL, 0, 1, 0, 0, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 },
- { "st", NULL, NULL, 0, 0, 1, 0, -1 },
+ /* { "st", NULL, NULL, 0, 0, 1, -1, -1 }, */
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
};
M dwm-anybar/drw.c => dwm-anybar/drw.c +1 -0
@@ 202,6 202,7 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname)
DefaultColormap(drw->dpy, drw->screen),
clrname, dest))
die("error, cannot allocate color '%s'", clrname);
+ dest->pixel |= 0xff << 24;
}
/* Wrapper to create color schemes. The caller has to call free(3) on the
M dwm-anybar/drw.o => dwm-anybar/drw.o +0 -0
M dwm-anybar/dwm => dwm-anybar/dwm +0 -0
M dwm-anybar/dwm-msg => dwm-anybar/dwm-msg +0 -0
M dwm-anybar/dwm-msg.o => dwm-anybar/dwm-msg.o +0 -0
M dwm-anybar/dwm.o => dwm-anybar/dwm.o +0 -0
M dwm-anybar/util.o => dwm-anybar/util.o +0 -0
M st-build/config.h => st-build/config.h +3 -2
@@ 6,13 6,14 @@
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
//static char *font = "Terminus:pixelsize=18:antialias=true:autohint=true";
-static char *font = "DroidSansMono Nerd Font:style=Book:pixelsize=17:antialias=true:autohint=true";
+/* static char *font = "DroidSansMono Nerd Font:style=Book:pixelsize=17:antialias=true:autohint=true"; */
+static char *font = "TamzenForPowerline:style=Regular:pixelsize=20:antialias=true:autohint=true";
/* Spare fonts */
static char *font2[] = {
"JoyPixels:pixelsite=15:antialias=true:autohint=true",
};
-static int borderpx = 0;
+static int borderpx = 50;
/*
* What program is execed by st depends of these precedence rules:
M st-build/st => st-build/st +0 -0
M st-build/st.o => st-build/st.o +0 -0
M st-build/x.o => st-build/x.o +0 -0
M st-plain/config.h => st-plain/config.h +2 -2
@@ 5,8 5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "Monospace:pixelsize=15:antialias=true:autohint=true";
-static int borderpx = 0;
+static char *font = "monospace:pixelsize=12:antialias=true:autohint=true";
+static int borderpx = 2;
/*
* What program is execed by st depends of these precedence rules:
M st-plain/st => st-plain/st +0 -0
M st-plain/st.o => st-plain/st.o +0 -0
M st-plain/x.o => st-plain/x.o +0 -0