Compare commits

...

8 commits

7 changed files with 14 additions and 14 deletions

View file

@ -3,7 +3,7 @@
/* appearance */ /* appearance */
#if ROUNDED_CORNERS_PATCH #if ROUNDED_CORNERS_PATCH
static const unsigned int borderpx = 0; /* border pixel of windows */ static const unsigned int borderpx = 0; /* border pixel of windows */
static const int corner_radius = 10; static const int corner_radius = 5;
#else #else
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 1; /* border pixel of windows */
#endif // ROUNDED_CORNERS_PATCH #endif // ROUNDED_CORNERS_PATCH
@ -453,9 +453,9 @@ static char tagicons[][NUMTAGS][MAX_TAGLEN] =
static char *tagicons[][NUMTAGS] = static char *tagicons[][NUMTAGS] =
#endif // NAMETAG_PATCH #endif // NAMETAG_PATCH
{ {
[DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }, [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" },
[ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" }, [ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" },
[ALT_TAGS_DECORATION] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }, [ALT_TAGS_DECORATION] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" },
}; };
#if BAR_TAGGRID_PATCH #if BAR_TAGGRID_PATCH
@ -561,6 +561,9 @@ static const BarRule barrules[] = {
{ -1, 1, BAR_ALIGN_LEFT, width_stbutton4, draw_stbutton4, click_stbutton4, NULL, "statusbutton4" }, { -1, 1, BAR_ALIGN_LEFT, width_stbutton4, draw_stbutton4, click_stbutton4, NULL, "statusbutton4" },
{ -1, 1, BAR_ALIGN_RIGHT, width_stbutton5, draw_stbutton5, click_stbutton5, NULL, "statusbutton5" }, { -1, 1, BAR_ALIGN_RIGHT, width_stbutton5, draw_stbutton5, click_stbutton5, NULL, "statusbutton5" },
#endif // BAR_STATUSBUTTON_PATCH #endif // BAR_STATUSBUTTON_PATCH
#if BAR_TAGGRID_PATCH
{ -1, 0, BAR_ALIGN_LEFT, width_taggrid, draw_taggrid, click_taggrid, NULL, "taggrid" },
#endif // BAR_TAGGRID_PATCH
#if BAR_POWERLINE_TAGS_PATCH #if BAR_POWERLINE_TAGS_PATCH
{ 0, 0, BAR_ALIGN_LEFT, width_pwrl_tags, draw_pwrl_tags, click_pwrl_tags, hover_pwrl_tags, "powerline_tags" }, { 0, 0, BAR_ALIGN_LEFT, width_pwrl_tags, draw_pwrl_tags, click_pwrl_tags, hover_pwrl_tags, "powerline_tags" },
#endif // BAR_POWERLINE_TAGS_PATCH #endif // BAR_POWERLINE_TAGS_PATCH
@ -570,9 +573,6 @@ static const BarRule barrules[] = {
#if BAR_TAGLABELS_PATCH #if BAR_TAGLABELS_PATCH
{ -1, 0, BAR_ALIGN_LEFT, width_taglabels, draw_taglabels, click_taglabels, hover_taglabels, "taglabels" }, { -1, 0, BAR_ALIGN_LEFT, width_taglabels, draw_taglabels, click_taglabels, hover_taglabels, "taglabels" },
#endif // BAR_TAGLABELS_PATCH #endif // BAR_TAGLABELS_PATCH
#if BAR_TAGGRID_PATCH
{ -1, 0, BAR_ALIGN_LEFT, width_taggrid, draw_taggrid, click_taggrid, NULL, "taggrid" },
#endif // BAR_TAGGRID_PATCH
#if BAR_SYSTRAY_PATCH #if BAR_SYSTRAY_PATCH
{ 0, 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, NULL, "systray" }, { 0, 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, NULL, "systray" },
#endif // BAR_SYSTRAY_PATCH #endif // BAR_SYSTRAY_PATCH

View file

@ -75,7 +75,7 @@
#define Button7 7 #define Button7 7
#define Button8 8 #define Button8 8
#define Button9 9 #define Button9 9
#define NUMTAGS 9 #define NUMTAGS 10
#define NUMVIEWHIST NUMTAGS #define NUMVIEWHIST NUMTAGS
#define BARRULES 20 #define BARRULES 20
#if TAB_PATCH #if TAB_PATCH

View file

@ -113,7 +113,7 @@
/* This patch adds an option to place tags in rows like in many other window managers. /* This patch adds an option to place tags in rows like in many other window managers.
* https://dwm.suckless.org/patches/taggrid/ * https://dwm.suckless.org/patches/taggrid/
*/ */
#define BAR_TAGGRID_PATCH 0 #define BAR_TAGGRID_PATCH 1
/* Hover tag icons to see a preview of the windows on that tag. /* Hover tag icons to see a preview of the windows on that tag.
* *
@ -728,13 +728,13 @@
/* This patch adds a keybinding to kills all visible clients that are not selected. /* This patch adds a keybinding to kills all visible clients that are not selected.
* https://dwm.suckless.org/patches/killunsel/ * https://dwm.suckless.org/patches/killunsel/
*/ */
#define KILLUNSEL_PATCH 0 #define KILLUNSEL_PATCH 1
/* This changes the window manager name to LG3d instead of dwm as a workaround for Java /* This changes the window manager name to LG3d instead of dwm as a workaround for Java
* applications that assume that the window manager is using window reparenting. * applications that assume that the window manager is using window reparenting.
* Refer to the ISSUES secton of the dwm man page for more details. * Refer to the ISSUES secton of the dwm man page for more details.
*/ */
#define LG3D_PATCH 1 #define LG3D_PATCH 0
/* By default in dwm it is possible to make an application fullscreen, then use /* By default in dwm it is possible to make an application fullscreen, then use
* the focusstack keybindings to focus on other windows beneath the current window. * the focusstack keybindings to focus on other windows beneath the current window.
@ -1094,7 +1094,7 @@
* *
* https://dwm.suckless.org/patches/sizehints/ * https://dwm.suckless.org/patches/sizehints/
*/ */
#define SIZEHINTS_ISFREESIZE_PATCH 0 #define SIZEHINTS_ISFREESIZE_PATCH 1
/* In a multi-head setup monitor 0 is by default the primary screen, with the left and right /* In a multi-head setup monitor 0 is by default the primary screen, with the left and right
* screen being monitor 1 and 2 respectively. This patch sorts screens left to right (or * screen being monitor 1 and 2 respectively. This patch sorts screens left to right (or
@ -1107,7 +1107,7 @@
/* Spawns programs from currently focused client's working directory. /* Spawns programs from currently focused client's working directory.
* https://dwm.suckless.org/patches/spawn_cwd/ * https://dwm.suckless.org/patches/spawn_cwd/
*/ */
#define SPAWNCMD_PATCH 0 #define SPAWNCMD_PATCH 1
/* This patch provides comprehensive utilities for managing the client stack, providing /* This patch provides comprehensive utilities for managing the client stack, providing
* keyboard shortcuts for focusing or placing a client at specific positions in the stack. * keyboard shortcuts for focusing or placing a client at specific positions in the stack.
@ -1357,7 +1357,7 @@
* or Google-chrome "browser" vs "pop-up". * or Google-chrome "browser" vs "pop-up".
* https://github.com/bakkeby/patches/blob/master/dwm/dwm-windowrolerule-6.2.diff * https://github.com/bakkeby/patches/blob/master/dwm/dwm-windowrolerule-6.2.diff
*/ */
#define WINDOWROLERULE_PATCH 0 #define WINDOWROLERULE_PATCH 1
/* The winview patch allows switching the view to that of a given client from the all-window /* The winview patch allows switching the view to that of a given client from the all-window
* view (Mod-0) using a keyboard shortcut. * view (Mod-0) using a keyboard shortcut.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 720 KiB

After

Width:  |  Height:  |  Size: 725 KiB