Compare commits

...

2 commits

Author SHA1 Message Date
Alexis Jhon Gaspar d619bdf356 Floating window fix for firefox dialogs 2023-10-02 22:55:36 +08:00
Alexis Jhon Gaspar 63086c04ca Nametag patch 2023-10-02 22:41:14 +08:00
3 changed files with 9 additions and 5 deletions

View file

@ -299,7 +299,7 @@
* it can handle long text. * it can handle long text.
* https://tools.suckless.org/dmenu/patches/scroll/ * https://tools.suckless.org/dmenu/patches/scroll/
*/ */
#define SCROLL_PATCH 1 #define SCROLL_PATCH 0
/* This patch adds -d and -D flags which separates the input into two halves; one half to be /* This patch adds -d and -D flags which separates the input into two halves; one half to be
* displayed in dmenu and the other to be printed to stdout. This patch takes precedence over * displayed in dmenu and the other to be printed to stdout. This patch takes precedence over

View file

@ -506,8 +506,12 @@ static const Rule rules[] = {
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "UTILITY", .isfloating = 1, .noswallow = 1)
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1, .noswallow = 1)
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1, .noswallow = 1)
RULE(.class = "Gimp", .tags = 1 << 4, .isfreesize = 1) RULE(.class = "Gimp", .tags = 1 << 4, .isfloating = 1)
RULE(.class = "Firefox", .tags = 1 << 7) RULE(.class = "Firefox", .tags = 1 << 7)
RULE(.role = "Organizer", .isfloating = 1)
RULE(.role = "About", .isfloating = 1)
RULE(.role = "webconsole", .isfloating = 1)
RULE(.role = "Organizer", .isfloating = 1)
#if RENAMED_SCRATCHPADS_PATCH #if RENAMED_SCRATCHPADS_PATCH
RULE(.instance = "spterm", .scratchkey = 's', .isfloating = 1, .isterminal = 1) RULE(.instance = "spterm", .scratchkey = 's', .isfloating = 1, .isterminal = 1)
#elif SCRATCHPADS_PATCH #elif SCRATCHPADS_PATCH

View file

@ -811,11 +811,11 @@
* *
* https://dwm.suckless.org/patches/nametag/ * https://dwm.suckless.org/patches/nametag/
*/ */
#define NAMETAG_PATCH 0 #define NAMETAG_PATCH 1
/* Variant of the above which prepends the tag number to the given string. /* Variant of the above which prepends the tag number to the given string.
* The toggle does nothing on its own and need to be enabled in combination with the above. */ * The toggle does nothing on its own and need to be enabled in combination with the above. */
#define NAMETAG_PREPEND_PATCH 0 #define NAMETAG_PREPEND_PATCH 1
/* Adds support for the _NET_CLIENT_LIST_STACKING atom, needed by certain applications like the /* Adds support for the _NET_CLIENT_LIST_STACKING atom, needed by certain applications like the
* Zoom video conferencing application. * Zoom video conferencing application.