N1x0

Results 30 comments of N1x0

Workspaces: Workspaces are represented as a list and hence up/down movements don't really make sense to me. Maybe they could be used as fallback methods to just call the get_next...

Hi @rickbutton , is this something you'd want to include and does the overall implementation approach work for you? There's still a few things that would require fixing but I'd...

Will have a look at the conflicts and try to get it implemented without breaking existing configs

Currently `FocusIndicator` does not check for any events other than the timer elapsing so and that timer effectively overrides the workspace & window change events. ``` _showTimer = new System.Timers.Timer();...

@egoexpress ah I understand the idea now. Would be a nice addition IMO to have the option to enable permanent focusborders instead of using the timer. If you're interested feel...

Hi @BeeryShklar , I really like the idea of a grid-based layout so I tried to come up with something. Sadly though actually implementing it is a massive headache so...

@lauverityhill thank you for your kind words, glad you like it! @BeeryShklar so I'm not actually sure on how to just add this to a config... I guess you'd have...

I have some "improvements" to report, I am still having issues with chrome windows but instead of going black and not being redrawn at all now they turn white sometimes...

My first thought would be that this could be linked to display scaling. Not something winforms is famous for handling gracefully. I'd have to check again but I believe the...

I noted one thing from your post ``` context.WindowRouter.AddFilter((window) => !window.ProcessName.Equals("SystemSettings") && !window.Title.Contains("Settings")); ``` Here you're using and `&&` have you tried using `||` to see if the issue still...