mirror of
https://github.com/tiyn/dwl.git
synced 2026-01-11 17:39:45 +01:00
Compare commits
2 Commits
bottomstac
...
togglekbla
| Author | SHA1 | Date | |
|---|---|---|---|
| b5fd524813 | |||
| 50c418df96 |
@@ -1,140 +0,0 @@
|
|||||||
From b352fb08f40b1ee2d8c4748be4922df711e3aaa9 Mon Sep 17 00:00:00 2001
|
|
||||||
From: wochap <gean.marroquin@gmail.com>
|
|
||||||
Date: Fri, 5 Jul 2024 10:44:29 -0500
|
|
||||||
Subject: [PATCH] implement bottomstack
|
|
||||||
|
|
||||||
---
|
|
||||||
config.def.h | 4 +++
|
|
||||||
dwl.c | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
2 files changed, 88 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/config.def.h b/config.def.h
|
|
||||||
index 22d2171..5aac3e9 100644
|
|
||||||
--- a/config.def.h
|
|
||||||
+++ b/config.def.h
|
|
||||||
@@ -34,6 +34,8 @@ static const Layout layouts[] = {
|
|
||||||
{ "[]=", tile },
|
|
||||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
|
||||||
{ "[M]", monocle },
|
|
||||||
+ { "TTT", bstack },
|
|
||||||
+ { "===", bstackhoriz },
|
|
||||||
};
|
|
||||||
|
|
||||||
/* monitors */
|
|
||||||
@@ -139,6 +141,8 @@ static const Key keys[] = {
|
|
||||||
{ MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} },
|
|
||||||
{ MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} },
|
|
||||||
{ MODKEY, XKB_KEY_m, setlayout, {.v = &layouts[2]} },
|
|
||||||
+ { MODKEY, XKB_KEY_u, setlayout, {.v = &layouts[3]} },
|
|
||||||
+ { MODKEY, XKB_KEY_o, setlayout, {.v = &layouts[4]} },
|
|
||||||
{ MODKEY, XKB_KEY_space, setlayout, {0} },
|
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} },
|
|
||||||
{ MODKEY, XKB_KEY_e, togglefullscreen, {0} },
|
|
||||||
diff --git a/dwl.c b/dwl.c
|
|
||||||
index dc0437e..5648d5f 100644
|
|
||||||
--- a/dwl.c
|
|
||||||
+++ b/dwl.c
|
|
||||||
@@ -57,6 +57,7 @@
|
|
||||||
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
|
||||||
#include <wlr/types/wlr_xdg_output_v1.h>
|
|
||||||
#include <wlr/types/wlr_xdg_shell.h>
|
|
||||||
+#include <wlr/util/box.h>
|
|
||||||
#include <wlr/util/log.h>
|
|
||||||
#include <wlr/util/region.h>
|
|
||||||
#include <xkbcommon/xkbcommon.h>
|
|
||||||
@@ -351,6 +352,8 @@ static Monitor *xytomon(double x, double y);
|
|
||||||
static void xytonode(double x, double y, struct wlr_surface **psurface,
|
|
||||||
Client **pc, LayerSurface **pl, double *nx, double *ny);
|
|
||||||
static void zoom(const Arg *arg);
|
|
||||||
+static void bstack(Monitor *m);
|
|
||||||
+static void bstackhoriz(Monitor *m);
|
|
||||||
|
|
||||||
/* variables */
|
|
||||||
static const char broken[] = "broken";
|
|
||||||
@@ -3160,3 +3163,84 @@ main(int argc, char *argv[])
|
|
||||||
usage:
|
|
||||||
die("Usage: %s [-v] [-d] [-s startup command]", argv[0]);
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+static void
|
|
||||||
+bstack(Monitor *m)
|
|
||||||
+{
|
|
||||||
+ int w, h, mh, mx, tx, ty, tw;
|
|
||||||
+ int i, n = 0;
|
|
||||||
+ Client *c;
|
|
||||||
+
|
|
||||||
+ wl_list_for_each(c, &clients, link)
|
|
||||||
+ if (VISIBLEON(c, m) && !c->isfloating)
|
|
||||||
+ n++;
|
|
||||||
+ if (n == 0)
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
+ if (n > m->nmaster) {
|
|
||||||
+ mh = (int)round(m->nmaster ? m->mfact * m->w.height : 0);
|
|
||||||
+ tw = m->w.width / (n - m->nmaster);
|
|
||||||
+ ty = m->w.y + mh;
|
|
||||||
+ } else {
|
|
||||||
+ mh = m->w.height;
|
|
||||||
+ tw = m->w.width;
|
|
||||||
+ ty = m->w.y;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ i = mx = 0;
|
|
||||||
+ tx = m-> w.x;
|
|
||||||
+ wl_list_for_each(c, &clients, link) {
|
|
||||||
+ if (!VISIBLEON(c, m) || c->isfloating)
|
|
||||||
+ continue;
|
|
||||||
+ if (i < m->nmaster) {
|
|
||||||
+ w = (m->w.width - mx) / (MIN(n, m->nmaster) - i);
|
|
||||||
+ resize(c, (struct wlr_box) { .x = m->w.x + mx, .y = m->w.y, .width = w, .height = mh }, 0);
|
|
||||||
+ mx += c->geom.width;
|
|
||||||
+ } else {
|
|
||||||
+ h = m->w.height - mh;
|
|
||||||
+ resize(c, (struct wlr_box) { .x = tx, .y = ty, .width = tw, .height = h }, 0);
|
|
||||||
+ if (tw != m->w.width)
|
|
||||||
+ tx += c->geom.width;
|
|
||||||
+ }
|
|
||||||
+ i++;
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static void
|
|
||||||
+bstackhoriz(Monitor *m) {
|
|
||||||
+ int w, mh, mx, tx, ty, th;
|
|
||||||
+ int i, n = 0;
|
|
||||||
+ Client *c;
|
|
||||||
+
|
|
||||||
+ wl_list_for_each(c, &clients, link)
|
|
||||||
+ if (VISIBLEON(c, m) && !c->isfloating)
|
|
||||||
+ n ++;
|
|
||||||
+ if (n == 0)
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
+ if (n > m->nmaster) {
|
|
||||||
+ mh = (int)round(m->nmaster ? m->mfact * m->w.height : 0);
|
|
||||||
+ th = (m->w.height - mh) / (n - m->nmaster);
|
|
||||||
+ ty = m->w.y + mh;
|
|
||||||
+ } else {
|
|
||||||
+ th = mh = m->w.height;
|
|
||||||
+ ty = m->w.y;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ i = mx = 0;
|
|
||||||
+ tx = m-> w.x;
|
|
||||||
+ wl_list_for_each(c, &clients, link) {
|
|
||||||
+ if (!VISIBLEON(c,m) || c->isfloating)
|
|
||||||
+ continue;
|
|
||||||
+ if (i < m->nmaster) {
|
|
||||||
+ w = (m->w.width - mx) / (MIN(n, m->nmaster) - i);
|
|
||||||
+ resize(c, (struct wlr_box) { .x = m->w.x + mx, .y = m->w.y, .width = w, .height = mh }, 0);
|
|
||||||
+ mx += c->geom.width;
|
|
||||||
+ } else {
|
|
||||||
+ resize(c, (struct wlr_box) { .x = tx, .y = ty, .width = m->w.width, .height = th }, 0);
|
|
||||||
+ if (th != m->w.height)
|
|
||||||
+ ty += c->geom.height;
|
|
||||||
+ }
|
|
||||||
+ i++;
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
--
|
|
||||||
2.45.1
|
|
||||||
21
config.def.h
21
config.def.h
@@ -34,8 +34,6 @@ static const Layout layouts[] = {
|
|||||||
{ "[]=", tile },
|
{ "[]=", tile },
|
||||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
||||||
{ "[M]", monocle },
|
{ "[M]", monocle },
|
||||||
{ "TTT", bstack },
|
|
||||||
{ "===", bstackhoriz },
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* monitors */
|
/* monitors */
|
||||||
@@ -54,12 +52,15 @@ static const MonitorRule monrules[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* keyboard */
|
/* keyboard */
|
||||||
static const struct xkb_rule_names xkb_rules = {
|
static const struct xkb_rule_names xkb_rules[] = {
|
||||||
/* can specify fields: rules, model, layout, variant, options */
|
{
|
||||||
/* example:
|
.layout = "us",
|
||||||
.options = "ctrl:nocaps",
|
},
|
||||||
*/
|
/*{
|
||||||
.options = NULL,
|
.layout = "us",
|
||||||
|
.variant = "dvp",
|
||||||
|
.options = "compose:102,numpad:shift3,kpdl:semi,keypad:atm,caps:super"
|
||||||
|
}*/
|
||||||
};
|
};
|
||||||
|
|
||||||
static const int repeat_rate = 25;
|
static const int repeat_rate = 25;
|
||||||
@@ -141,8 +142,6 @@ static const Key keys[] = {
|
|||||||
{ MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} },
|
{ MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} },
|
||||||
{ MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} },
|
{ MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} },
|
||||||
{ MODKEY, XKB_KEY_m, setlayout, {.v = &layouts[2]} },
|
{ MODKEY, XKB_KEY_m, setlayout, {.v = &layouts[2]} },
|
||||||
{ MODKEY, XKB_KEY_u, setlayout, {.v = &layouts[3]} },
|
|
||||||
{ MODKEY, XKB_KEY_o, setlayout, {.v = &layouts[4]} },
|
|
||||||
{ MODKEY, XKB_KEY_space, setlayout, {0} },
|
{ MODKEY, XKB_KEY_space, setlayout, {0} },
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} },
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} },
|
||||||
{ MODKEY, XKB_KEY_e, togglefullscreen, {0} },
|
{ MODKEY, XKB_KEY_e, togglefullscreen, {0} },
|
||||||
@@ -152,6 +151,8 @@ static const Key keys[] = {
|
|||||||
{ MODKEY, XKB_KEY_period, focusmon, {.i = WLR_DIRECTION_RIGHT} },
|
{ MODKEY, XKB_KEY_period, focusmon, {.i = WLR_DIRECTION_RIGHT} },
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_less, tagmon, {.i = WLR_DIRECTION_LEFT} },
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_less, tagmon, {.i = WLR_DIRECTION_LEFT} },
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_greater, tagmon, {.i = WLR_DIRECTION_RIGHT} },
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_greater, tagmon, {.i = WLR_DIRECTION_RIGHT} },
|
||||||
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_A, incxkbrules, {.i = +1} },
|
||||||
|
/*{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_E, setxkbrules, {.i = +1} },*/
|
||||||
TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0),
|
TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0),
|
||||||
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
|
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
|
||||||
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
|
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
|
||||||
|
|||||||
128
dwl.c
128
dwl.c
@@ -59,7 +59,6 @@
|
|||||||
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
||||||
#include <wlr/types/wlr_xdg_output_v1.h>
|
#include <wlr/types/wlr_xdg_output_v1.h>
|
||||||
#include <wlr/types/wlr_xdg_shell.h>
|
#include <wlr/types/wlr_xdg_shell.h>
|
||||||
#include <wlr/util/box.h>
|
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include <wlr/util/region.h>
|
#include <wlr/util/region.h>
|
||||||
#include <xkbcommon/xkbcommon.h>
|
#include <xkbcommon/xkbcommon.h>
|
||||||
@@ -247,6 +246,7 @@ static void arrange(Monitor *m);
|
|||||||
static void arrangelayer(Monitor *m, struct wl_list *list,
|
static void arrangelayer(Monitor *m, struct wl_list *list,
|
||||||
struct wlr_box *usable_area, int exclusive);
|
struct wlr_box *usable_area, int exclusive);
|
||||||
static void arrangelayers(Monitor *m);
|
static void arrangelayers(Monitor *m);
|
||||||
|
static void assignkeymap(struct wlr_keyboard *keyboard);
|
||||||
static void axisnotify(struct wl_listener *listener, void *data);
|
static void axisnotify(struct wl_listener *listener, void *data);
|
||||||
static void buttonpress(struct wl_listener *listener, void *data);
|
static void buttonpress(struct wl_listener *listener, void *data);
|
||||||
static void chvt(const Arg *arg);
|
static void chvt(const Arg *arg);
|
||||||
@@ -291,6 +291,7 @@ static void fullscreennotify(struct wl_listener *listener, void *data);
|
|||||||
static void gpureset(struct wl_listener *listener, void *data);
|
static void gpureset(struct wl_listener *listener, void *data);
|
||||||
static void handlesig(int signo);
|
static void handlesig(int signo);
|
||||||
static void incnmaster(const Arg *arg);
|
static void incnmaster(const Arg *arg);
|
||||||
|
static void incxkbrules(const Arg *arg);
|
||||||
static void inputdevice(struct wl_listener *listener, void *data);
|
static void inputdevice(struct wl_listener *listener, void *data);
|
||||||
static int keybinding(uint32_t mods, xkb_keysym_t sym);
|
static int keybinding(uint32_t mods, xkb_keysym_t sym);
|
||||||
static void keypress(struct wl_listener *listener, void *data);
|
static void keypress(struct wl_listener *listener, void *data);
|
||||||
@@ -330,6 +331,7 @@ static void setmon(Client *c, Monitor *m, uint32_t newtags);
|
|||||||
static void setpsel(struct wl_listener *listener, void *data);
|
static void setpsel(struct wl_listener *listener, void *data);
|
||||||
static void setsel(struct wl_listener *listener, void *data);
|
static void setsel(struct wl_listener *listener, void *data);
|
||||||
static void setup(void);
|
static void setup(void);
|
||||||
|
static void setxkbrules(const Arg *arg);
|
||||||
static void spawn(const Arg *arg);
|
static void spawn(const Arg *arg);
|
||||||
static void startdrag(struct wl_listener *listener, void *data);
|
static void startdrag(struct wl_listener *listener, void *data);
|
||||||
static void tag(const Arg *arg);
|
static void tag(const Arg *arg);
|
||||||
@@ -352,8 +354,6 @@ static Monitor *xytomon(double x, double y);
|
|||||||
static void xytonode(double x, double y, struct wlr_surface **psurface,
|
static void xytonode(double x, double y, struct wlr_surface **psurface,
|
||||||
Client **pc, LayerSurface **pl, double *nx, double *ny);
|
Client **pc, LayerSurface **pl, double *nx, double *ny);
|
||||||
static void zoom(const Arg *arg);
|
static void zoom(const Arg *arg);
|
||||||
static void bstack(Monitor *m);
|
|
||||||
static void bstackhoriz(Monitor *m);
|
|
||||||
|
|
||||||
/* variables */
|
/* variables */
|
||||||
static pid_t child_pid = -1;
|
static pid_t child_pid = -1;
|
||||||
@@ -400,6 +400,7 @@ static struct wlr_session_lock_v1 *cur_lock;
|
|||||||
|
|
||||||
static struct wlr_seat *seat;
|
static struct wlr_seat *seat;
|
||||||
static KeyboardGroup *kb_group;
|
static KeyboardGroup *kb_group;
|
||||||
|
static unsigned int kblayout = 0;
|
||||||
static unsigned int cursor_mode;
|
static unsigned int cursor_mode;
|
||||||
static Client *grabc;
|
static Client *grabc;
|
||||||
static int grabcx, grabcy; /* client-relative */
|
static int grabcx, grabcy; /* client-relative */
|
||||||
@@ -605,6 +606,20 @@ arrangelayers(Monitor *m)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
assignkeymap(struct wlr_keyboard *keyboard) {
|
||||||
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||||
|
struct xkb_keymap *keymap = xkb_keymap_new_from_names(context, &xkb_rules[kblayout],
|
||||||
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||||
|
|
||||||
|
if (!keymap)
|
||||||
|
die("failed to compile keymap");
|
||||||
|
|
||||||
|
wlr_keyboard_set_keymap(keyboard, keymap);
|
||||||
|
xkb_keymap_unref(keymap);
|
||||||
|
xkb_context_unref(context);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
axisnotify(struct wl_listener *listener, void *data)
|
axisnotify(struct wl_listener *listener, void *data)
|
||||||
{
|
{
|
||||||
@@ -951,21 +966,11 @@ KeyboardGroup *
|
|||||||
createkeyboardgroup(void)
|
createkeyboardgroup(void)
|
||||||
{
|
{
|
||||||
KeyboardGroup *group = ecalloc(1, sizeof(*group));
|
KeyboardGroup *group = ecalloc(1, sizeof(*group));
|
||||||
struct xkb_context *context;
|
|
||||||
struct xkb_keymap *keymap;
|
|
||||||
|
|
||||||
group->wlr_group = wlr_keyboard_group_create();
|
group->wlr_group = wlr_keyboard_group_create();
|
||||||
group->wlr_group->data = group;
|
group->wlr_group->data = group;
|
||||||
|
|
||||||
/* Prepare an XKB keymap and assign it to the keyboard group. */
|
assignkeymap(&group->wlr_group->keyboard);
|
||||||
context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
|
||||||
if (!(keymap = xkb_keymap_new_from_names(context, &xkb_rules,
|
|
||||||
XKB_KEYMAP_COMPILE_NO_FLAGS)))
|
|
||||||
die("failed to compile keymap");
|
|
||||||
|
|
||||||
wlr_keyboard_set_keymap(&group->wlr_group->keyboard, keymap);
|
|
||||||
xkb_keymap_unref(keymap);
|
|
||||||
xkb_context_unref(context);
|
|
||||||
|
|
||||||
wlr_keyboard_set_repeat_info(&group->wlr_group->keyboard, repeat_rate, repeat_delay);
|
wlr_keyboard_set_repeat_info(&group->wlr_group->keyboard, repeat_rate, repeat_delay);
|
||||||
|
|
||||||
@@ -1575,6 +1580,13 @@ incnmaster(const Arg *arg)
|
|||||||
arrange(selmon);
|
arrange(selmon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
incxkbrules(const Arg *arg)
|
||||||
|
{
|
||||||
|
kblayout = (kblayout + arg->i) % LENGTH(xkb_rules);
|
||||||
|
assignkeymap(&kb_group->wlr_group->keyboard);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
inputdevice(struct wl_listener *listener, void *data)
|
inputdevice(struct wl_listener *listener, void *data)
|
||||||
{
|
{
|
||||||
@@ -2664,6 +2676,13 @@ setup(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
setxkbrules(const Arg *arg)
|
||||||
|
{
|
||||||
|
kblayout = arg->i;
|
||||||
|
assignkeymap(&kb_group->wlr_group->keyboard);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
spawn(const Arg *arg)
|
spawn(const Arg *arg)
|
||||||
{
|
{
|
||||||
@@ -3211,84 +3230,3 @@ main(int argc, char *argv[])
|
|||||||
usage:
|
usage:
|
||||||
die("Usage: %s [-v] [-d] [-s startup command]", argv[0]);
|
die("Usage: %s [-v] [-d] [-s startup command]", argv[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
bstack(Monitor *m)
|
|
||||||
{
|
|
||||||
int w, h, mh, mx, tx, ty, tw;
|
|
||||||
int i, n = 0;
|
|
||||||
Client *c;
|
|
||||||
|
|
||||||
wl_list_for_each(c, &clients, link)
|
|
||||||
if (VISIBLEON(c, m) && !c->isfloating)
|
|
||||||
n++;
|
|
||||||
if (n == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (n > m->nmaster) {
|
|
||||||
mh = (int)round(m->nmaster ? m->mfact * m->w.height : 0);
|
|
||||||
tw = m->w.width / (n - m->nmaster);
|
|
||||||
ty = m->w.y + mh;
|
|
||||||
} else {
|
|
||||||
mh = m->w.height;
|
|
||||||
tw = m->w.width;
|
|
||||||
ty = m->w.y;
|
|
||||||
}
|
|
||||||
|
|
||||||
i = mx = 0;
|
|
||||||
tx = m-> w.x;
|
|
||||||
wl_list_for_each(c, &clients, link) {
|
|
||||||
if (!VISIBLEON(c, m) || c->isfloating)
|
|
||||||
continue;
|
|
||||||
if (i < m->nmaster) {
|
|
||||||
w = (m->w.width - mx) / (MIN(n, m->nmaster) - i);
|
|
||||||
resize(c, (struct wlr_box) { .x = m->w.x + mx, .y = m->w.y, .width = w, .height = mh }, 0);
|
|
||||||
mx += c->geom.width;
|
|
||||||
} else {
|
|
||||||
h = m->w.height - mh;
|
|
||||||
resize(c, (struct wlr_box) { .x = tx, .y = ty, .width = tw, .height = h }, 0);
|
|
||||||
if (tw != m->w.width)
|
|
||||||
tx += c->geom.width;
|
|
||||||
}
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
bstackhoriz(Monitor *m) {
|
|
||||||
int w, mh, mx, tx, ty, th;
|
|
||||||
int i, n = 0;
|
|
||||||
Client *c;
|
|
||||||
|
|
||||||
wl_list_for_each(c, &clients, link)
|
|
||||||
if (VISIBLEON(c, m) && !c->isfloating)
|
|
||||||
n ++;
|
|
||||||
if (n == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (n > m->nmaster) {
|
|
||||||
mh = (int)round(m->nmaster ? m->mfact * m->w.height : 0);
|
|
||||||
th = (m->w.height - mh) / (n - m->nmaster);
|
|
||||||
ty = m->w.y + mh;
|
|
||||||
} else {
|
|
||||||
th = mh = m->w.height;
|
|
||||||
ty = m->w.y;
|
|
||||||
}
|
|
||||||
|
|
||||||
i = mx = 0;
|
|
||||||
tx = m-> w.x;
|
|
||||||
wl_list_for_each(c, &clients, link) {
|
|
||||||
if (!VISIBLEON(c,m) || c->isfloating)
|
|
||||||
continue;
|
|
||||||
if (i < m->nmaster) {
|
|
||||||
w = (m->w.width - mx) / (MIN(n, m->nmaster) - i);
|
|
||||||
resize(c, (struct wlr_box) { .x = m->w.x + mx, .y = m->w.y, .width = w, .height = mh }, 0);
|
|
||||||
mx += c->geom.width;
|
|
||||||
} else {
|
|
||||||
resize(c, (struct wlr_box) { .x = tx, .y = ty, .width = m->w.width, .height = th }, 0);
|
|
||||||
if (th != m->w.height)
|
|
||||||
ty += c->geom.height;
|
|
||||||
}
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
160
togglekblayoutandoptions.patch
Normal file
160
togglekblayoutandoptions.patch
Normal file
@@ -0,0 +1,160 @@
|
|||||||
|
From 9ee76adc7c6567650e7b34273f953fed03191c05 Mon Sep 17 00:00:00 2001
|
||||||
|
From: LaKato <lakato@noreply.codeberg.org>
|
||||||
|
Date: Sat, 8 Mar 2025 12:14:41 -0500
|
||||||
|
Subject: [PATCH] Update for v0.7
|
||||||
|
|
||||||
|
Additional changes:
|
||||||
|
- incxkbrules now uses its argument
|
||||||
|
- A new setxkbrules function has been added
|
||||||
|
- Keyboard groups are no longer looped over because only one is created
|
||||||
|
---
|
||||||
|
config.def.h | 17 +++++++++++------
|
||||||
|
dwl.c | 44 +++++++++++++++++++++++++++++++++-----------
|
||||||
|
2 files changed, 44 insertions(+), 17 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/config.def.h b/config.def.h
|
||||||
|
index 22d2171..b3b4699 100644
|
||||||
|
--- a/config.def.h
|
||||||
|
+++ b/config.def.h
|
||||||
|
@@ -52,12 +52,15 @@ static const MonitorRule monrules[] = {
|
||||||
|
};
|
||||||
|
|
||||||
|
/* keyboard */
|
||||||
|
-static const struct xkb_rule_names xkb_rules = {
|
||||||
|
- /* can specify fields: rules, model, layout, variant, options */
|
||||||
|
- /* example:
|
||||||
|
- .options = "ctrl:nocaps",
|
||||||
|
- */
|
||||||
|
- .options = NULL,
|
||||||
|
+static const struct xkb_rule_names xkb_rules[] = {
|
||||||
|
+ {
|
||||||
|
+ .layout = "us",
|
||||||
|
+ },
|
||||||
|
+ /*{
|
||||||
|
+ .layout = "us",
|
||||||
|
+ .variant = "dvp",
|
||||||
|
+ .options = "compose:102,numpad:shift3,kpdl:semi,keypad:atm,caps:super"
|
||||||
|
+ }*/
|
||||||
|
};
|
||||||
|
|
||||||
|
static const int repeat_rate = 25;
|
||||||
|
@@ -148,6 +151,8 @@ static const Key keys[] = {
|
||||||
|
{ MODKEY, XKB_KEY_period, focusmon, {.i = WLR_DIRECTION_RIGHT} },
|
||||||
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_less, tagmon, {.i = WLR_DIRECTION_LEFT} },
|
||||||
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_greater, tagmon, {.i = WLR_DIRECTION_RIGHT} },
|
||||||
|
+ { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_A, incxkbrules, {.i = +1} },
|
||||||
|
+ /*{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_E, setxkbrules, {.i = +1} },*/
|
||||||
|
TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0),
|
||||||
|
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
|
||||||
|
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
|
||||||
|
diff --git a/dwl.c b/dwl.c
|
||||||
|
index a2711f6..a2413e9 100644
|
||||||
|
--- a/dwl.c
|
||||||
|
+++ b/dwl.c
|
||||||
|
@@ -249,6 +249,7 @@ static void arrange(Monitor *m);
|
||||||
|
static void arrangelayer(Monitor *m, struct wl_list *list,
|
||||||
|
struct wlr_box *usable_area, int exclusive);
|
||||||
|
static void arrangelayers(Monitor *m);
|
||||||
|
+static void assignkeymap(struct wlr_keyboard *keyboard);
|
||||||
|
static void axisnotify(struct wl_listener *listener, void *data);
|
||||||
|
static void buttonpress(struct wl_listener *listener, void *data);
|
||||||
|
static void chvt(const Arg *arg);
|
||||||
|
@@ -293,6 +294,7 @@ static void fullscreennotify(struct wl_listener *listener, void *data);
|
||||||
|
static void gpureset(struct wl_listener *listener, void *data);
|
||||||
|
static void handlesig(int signo);
|
||||||
|
static void incnmaster(const Arg *arg);
|
||||||
|
+static void incxkbrules(const Arg *arg);
|
||||||
|
static void inputdevice(struct wl_listener *listener, void *data);
|
||||||
|
static int keybinding(uint32_t mods, xkb_keysym_t sym);
|
||||||
|
static void keypress(struct wl_listener *listener, void *data);
|
||||||
|
@@ -333,6 +335,7 @@ static void setmon(Client *c, Monitor *m, uint32_t newtags);
|
||||||
|
static void setpsel(struct wl_listener *listener, void *data);
|
||||||
|
static void setsel(struct wl_listener *listener, void *data);
|
||||||
|
static void setup(void);
|
||||||
|
+static void setxkbrules(const Arg *arg);
|
||||||
|
static void spawn(const Arg *arg);
|
||||||
|
static void startdrag(struct wl_listener *listener, void *data);
|
||||||
|
static void tag(const Arg *arg);
|
||||||
|
@@ -404,6 +407,7 @@ static struct wl_listener lock_listener = {.notify = locksession};
|
||||||
|
|
||||||
|
static struct wlr_seat *seat;
|
||||||
|
static KeyboardGroup *kb_group;
|
||||||
|
+static unsigned int kblayout = 0;
|
||||||
|
static unsigned int cursor_mode;
|
||||||
|
static Client *grabc;
|
||||||
|
static int grabcx, grabcy; /* client-relative */
|
||||||
|
@@ -580,6 +584,20 @@ arrangelayers(Monitor *m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+assignkeymap(struct wlr_keyboard *keyboard) {
|
||||||
|
+ struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||||
|
+ struct xkb_keymap *keymap = xkb_keymap_new_from_names(context, &xkb_rules[kblayout],
|
||||||
|
+ XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||||
|
+
|
||||||
|
+ if (!keymap)
|
||||||
|
+ die("failed to compile keymap");
|
||||||
|
+
|
||||||
|
+ wlr_keyboard_set_keymap(keyboard, keymap);
|
||||||
|
+ xkb_keymap_unref(keymap);
|
||||||
|
+ xkb_context_unref(context);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void
|
||||||
|
axisnotify(struct wl_listener *listener, void *data)
|
||||||
|
{
|
||||||
|
@@ -885,21 +903,11 @@ KeyboardGroup *
|
||||||
|
createkeyboardgroup(void)
|
||||||
|
{
|
||||||
|
KeyboardGroup *group = ecalloc(1, sizeof(*group));
|
||||||
|
- struct xkb_context *context;
|
||||||
|
- struct xkb_keymap *keymap;
|
||||||
|
|
||||||
|
group->wlr_group = wlr_keyboard_group_create();
|
||||||
|
group->wlr_group->data = group;
|
||||||
|
|
||||||
|
- /* Prepare an XKB keymap and assign it to the keyboard group. */
|
||||||
|
- context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||||
|
- if (!(keymap = xkb_keymap_new_from_names(context, &xkb_rules,
|
||||||
|
- XKB_KEYMAP_COMPILE_NO_FLAGS)))
|
||||||
|
- die("failed to compile keymap");
|
||||||
|
-
|
||||||
|
- wlr_keyboard_set_keymap(&group->wlr_group->keyboard, keymap);
|
||||||
|
- xkb_keymap_unref(keymap);
|
||||||
|
- xkb_context_unref(context);
|
||||||
|
+ assignkeymap(&group->wlr_group->keyboard);
|
||||||
|
|
||||||
|
wlr_keyboard_set_repeat_info(&group->wlr_group->keyboard, repeat_rate, repeat_delay);
|
||||||
|
|
||||||
|
@@ -1524,6 +1532,13 @@ incnmaster(const Arg *arg)
|
||||||
|
arrange(selmon);
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+incxkbrules(const Arg *arg)
|
||||||
|
+{
|
||||||
|
+ kblayout = (kblayout + arg->i) % LENGTH(xkb_rules);
|
||||||
|
+ assignkeymap(&kb_group->wlr_group->keyboard);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void
|
||||||
|
inputdevice(struct wl_listener *listener, void *data)
|
||||||
|
{
|
||||||
|
@@ -2645,6 +2660,13 @@ setup(void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+setxkbrules(const Arg *arg)
|
||||||
|
+{
|
||||||
|
+ kblayout = arg->i;
|
||||||
|
+ assignkeymap(&kb_group->wlr_group->keyboard);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void
|
||||||
|
spawn(const Arg *arg)
|
||||||
|
{
|
||||||
|
--
|
||||||
|
2.48.1
|
||||||
|
|
||||||
Reference in New Issue
Block a user