Carlos Pérez Gutiérrez
Carlos Pérez Gutiérrez
Have you tried to put safari on below layer and then everything else on above layer?
Those options don't exist in the [Rule context ](https://github.com/koekeishiya/yabai/blob/master/doc/yabai.asciidoc#rule). What you want is to is to create a signal for application_activated and deactivated for iTerm. That way you can change...
There isn't a way for managed (tiled) windows. Something you could do is a script that: - gets the width of your display: `(yabai -m query --displays).frame` - and get...
Did you found any solution @HenriAW ?
Maybe something simple like: **Bad:** ```javascript Array.prototype.last = function() { return this[this.length-1]; } [1,2,3].last(); ``` **Good:** ```javascript function getLastElement(array){ return array[array.length-1] } getLastElement([1,2,3]); ``` And, yeah, the idea of modules...
Adding to this thread that I also noticed a hang on the hammerspoon reload when using window.filter. After removing my window.filter call, my reload config is very quick.
That's true, actually this was because of the version of TS. Thanks to bring this issue. What we need here is upgrade `TS` and add this in our `tsconfig.json`: ```...
Hello. Extensions should exist in other repo as you mention. So, no plans on this by me. Since these extensions are from community... It should be better if someone want...
@imcodingideas sorry for the late answer. I don't have internet at home and I cannot work on the project for some time (I was working on V2 and I'm going...
I will rewrite Bloomer to make it lighter than it is now and it will be easier to implement new Bulma. At first wanted to create it with styled components...