diff --git a/config.def.h b/config.def.h index 67b42c9..3b2822f 100644 --- a/config.def.h +++ b/config.def.h @@ -166,11 +166,11 @@ static void (*bartabmonfns[])(Monitor *) = { NULL /* , customlayoutfn */ }; #endif // MONOCLE_LAYOUT #endif // BAR_TABGROUPS_PATCH #if BAR_PANGO_PATCH -static const char font[] = "monospace 11"; +static const char font[] = "monospace 13"; #else -static const char *fonts[] = { "JetBrainsMono Nerd Font:size=11:antialias=true", "monospace:size=11:antialias=true" }; +static const char *fonts[] = { "JetBrainsMono Nerd Font:size=13:antialias=true", "monospace:size=13:antialias=true" }; #endif // BAR_PANGO_PATCH -static const char dmenufont[] = "JetBrainsMono Nerd Font:size=11:antialias=true"; +static const char dmenufont[] = "JetBrainsMono Nerd Font:size=13:antialias=true"; #define BASE "#191724" #define SURFACE "#1f1d2e" diff --git a/patches.def.h b/patches.def.h index 4ab1be2..d2ab863 100644 --- a/patches.def.h +++ b/patches.def.h @@ -1331,7 +1331,7 @@ * https://github.com/bakkeby/patches/wiki/togglelayout */ -#define TOGGLELAYOUT_PATCH 0 +#define TOGGLELAYOUT_PATCH 1 /* Minor patch that lets you use the same keyboard shortcut to toggle to the previous tag if the * designated tag is already active. @@ -1425,7 +1425,7 @@ * https://www.x.org/archive/X11R7.5/doc/input/XKB-Config.html * https://dwm.suckless.org/patches/xkb/ */ -#define XKB_PATCH 1 +#define XKB_PATCH 0 /* Allows dwm to read colors from xrdb (.Xresources) during runtime. Compatible with * the float border color, awesomebar, urgentborder and titlecolor patches. @@ -1456,7 +1456,7 @@ /* Bottomstack horizontal layout. * https://dwm.suckless.org/patches/bottomstack/ */ -#define BSTACKHORIZ_LAYOUT 0 +#define BSTACKHORIZ_LAYOUT 1 /* Centered master layout. * https://dwm.suckless.org/patches/centeredmaster/ @@ -1466,18 +1466,18 @@ /* Centered floating master layout. * https://dwm.suckless.org/patches/centeredmaster/ */ -#define CENTEREDFLOATINGMASTER_LAYOUT 0 +#define CENTEREDFLOATINGMASTER_LAYOUT 1 /* Same as the default tile layout except clients in the master area are arranged in * columns (i.e. left to right). * https://dwm.suckless.org/patches/columns/ */ -#define COLUMNS_LAYOUT 0 +#define COLUMNS_LAYOUT 1 /* Deck layout. * https://dwm.suckless.org/patches/deck/ */ -#define DECK_LAYOUT 0 +#define DECK_LAYOUT 1 /* Fibonacci dwindle layout. * https://dwm.suckless.org/patches/fibonacci/ @@ -1487,7 +1487,7 @@ /* Fibonacci spiral layout. * https://dwm.suckless.org/patches/fibonacci/ */ -#define FIBONACCI_SPIRAL_LAYOUT 0 +#define FIBONACCI_SPIRAL_LAYOUT 1 /* Flextile deluxe layout. * A revamped, more flexible, and over-the-top version of the original flextile layout.