Daniel Pereira

Results 46 comments of Daniel Pereira

I'm not aware of what's been discussed before, but just for the sake of reference (and while this is not a solution for this issue), you can bind a key...

Alternatively for the time being, one could also use `xargs` and pipe a bigger input like that: ```bash cat file-with-huge-layout-definition.txt | xargs herbstclient load ``` As a suggestion though, on...

You can easily script that with `herbstclient --idle focus_changed`. Basically you need to make sure to always save the id of the previously visited screen then have a keybind that...

You can try making your keybind try jumping to LASTWIN, otherwise just cycle, like that: ``` herbstclient substitute LASTWIN my_lastwin or . silent jumpto LASTWIN . cycle ``` EDIT: For...

Wow, I opened this issue so long ago I didn't remember I opened it, sorry about that. I think that the case described by @JalilArfaoui is what I most often...

That's not the only place though. Few descendant classes overrides `__init__` arity (`Page`, `PageInfo` and `Annotation`), so it won't be as easy as to change that call to `type(self)()`. Maybe...

Replacing that method by ```python def __deepcopy__(self, memodict={}): out = type(self).__new__(type(self)) Dictionary.__init__(out) for k, v in self.items(): out[copy.deepcopy(k, memodict)] = copy.deepcopy(v, memodict) return out ``` has worked out for me,...

@jorisschellekens oh, no problem! Thank you for merging it!

@maximbaz Did you manage to use the Symbol Nerd Font on kitty? I'm struggling with it because it refuses to display the characters I specify on `symbol_map`.

@gnunn1 I apologize for using this thread for this purpose, but I would like to thank you very much for all your work on Tilix. 👏 I too find the...