Emanuele Torre

Results 208 comments of Emanuele Torre
trafficstars

> it's just `flameshot gui`. I also tried that, it just exits immediately: https://user-images.githubusercontent.com/20175435/164890841-3530c5dc-d78e-4bff-96f1-8b1edecc3ec2.mp4

This patch simply prints all the (C locale) control characters as `\u00XX` and adds a backslash in front of `\` and `"` characters, some of the control characters (but not...

I just realised that `bspwm` is loading back the json strings by copying the bytes between the starting and ending quotes. that should also be changed otherwise these backslash sequences...

my `jq` clone: ```jq def camel_to_snake: gsub("(?[[:upper:]])"; "_\(.x|ascii_downcase)"); def dump_object: to_entries[] | "\(.key|camel_to_snake)\t-> \(.value)"; .monitors[] | ( { monitorName: .name, windowGap, borderWidth, padding } | dump_object ), "", ( .desktops[]...

That looks like the `spiral` automatic scheme with `initial_polarity=first_child`. ```bash bspc config automatic_scheme spiral bspc config initial_polarity first_child bspc config removal_adjustment true # how much of the screen the "master"...

Also, the `node --circulate` command is pretty useful with `spiral`: ``` super + {comma,period} bspc node '@/' -C {backward,forward} ``` This is the version I use personally (in case you...

RE: @j-hui > dwm's master and stack layout does not continue to spiral like bspwm's spiral layout. I am aware it is not equivalent. > Do you do anything to...

`xcb_icccm.h` is not part of `xcb-xinerama0`. `xcb-xinerama0` is a package that provides `xcb` bindings for [`xinerama`](https://en.wikipedia.org/wiki/Xinerama) support. You did not tell us what distribution you are using, so here is...

note that this also happens with: * `bspc config external_rules_command true` * `bspc config external_rules_command doesnotexist`

using this patch ```diff diff --git a/src/window.c b/src/window.c index cd2340d..f6eab1a 100644 --- a/src/window.c +++ b/src/window.c @@ -79,6 +79,13 @@ bool manage_window(xcb_window_t win, rule_consequence_t *csq, int fd) parse_rule_consequence(fd, csq); + char...