From 749f80e5659bdd8e22b375360ab3f3110b7ebf22 Mon Sep 17 00:00:00 2001 From: Zuki Air Date: Tue, 29 Jul 2025 10:41:33 +0100 Subject: [PATCH] riverctl patch: add support for changing borderpx via dwlctl --- patches/riverctl/riverctl.patch | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/patches/riverctl/riverctl.patch b/patches/riverctl/riverctl.patch index 571434f..f708d95 100644 --- a/patches/riverctl/riverctl.patch +++ b/patches/riverctl/riverctl.patch @@ -1,4 +1,4 @@ -From fbaf5f3b5d57c9239ed822d307f7f0b71aa53b27 Mon Sep 17 00:00:00 2001 +From ef417a18fea99dedc9dfe33f86015d6881c0751d Mon Sep 17 00:00:00 2001 From: Zuki Air Date: Sun, 27 Jul 2025 11:30:32 +0100 Subject: [PATCH] river-ctl patch @@ -13,8 +13,8 @@ improve uint error handling dwl.c | 20 +- dwlctl.c | 132 +++++ protocols/river-control-unstable-v1.xml | 85 +++ - river-control.h | 722 ++++++++++++++++++++++++ - 7 files changed, 1001 insertions(+), 15 deletions(-) + river-control.h | 732 ++++++++++++++++++++++++ + 7 files changed, 1011 insertions(+), 15 deletions(-) create mode 100644 dwlctl.c create mode 100644 protocols/river-control-unstable-v1.xml create mode 100644 river-control.h @@ -439,10 +439,10 @@ index 0000000..aa5fc4d + diff --git a/river-control.h b/river-control.h new file mode 100644 -index 0000000..237a926 +index 0000000..9583607 --- /dev/null +++ b/river-control.h -@@ -0,0 +1,722 @@ +@@ -0,0 +1,732 @@ +#include "river-control-unstable-v1-private-protocol.c" +#include "river-control-unstable-v1-protocol.h" +#ifdef KEYS_USED @@ -450,6 +450,7 @@ index 0000000..237a926 +#endif +void clear_rules(const Arg*); +void clear_binds(const Arg*); ++void setborderpx(const Arg*); +// TODO add dynamic rules then its fully complete! +struct wl_list arg_str_store; +struct wl_list rule_str_store; @@ -496,6 +497,7 @@ index 0000000..237a926 +struct Func_str_type_pair Func_str_type_pair_list[] = { + { clear_binds, FUNC_STR_ARG_TYPE_NONE, "clear-binds" }, + { clear_rules, FUNC_STR_ARG_TYPE_NONE, "clear-rules" }, ++ STR(setborderpx,FUNC_STR_ARG_TYPE_UINT), + STR(setlayout,FUNC_STR_ARG_TYPE_LAYOUT), + STR(spawn,FUNC_STR_ARG_TYPE_STRING_ARRAY), + STR(focusstack,FUNC_STR_ARG_TYPE_INT), @@ -659,6 +661,14 @@ index 0000000..237a926 + const char* error_msg; +}; + ++void setborderpx(const Arg *arg) { ++ Client *c; ++ borderpx = arg->ui; ++ wl_list_for_each(c, &clients, link) { ++ c->bw = borderpx; ++ } ++} ++ +void zriver_control_destroy(struct wl_client *client, + struct wl_resource *resource) { + printf("destroy!\n");