-
-
Notifications
You must be signed in to change notification settings - Fork 589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add foreground blurring #490
Conversation
Codecov Report
@@ Coverage Diff @@
## next #490 +/- ##
==========================================
- Coverage 36.86% 36.80% -0.07%
==========================================
Files 45 45
Lines 8907 8917 +10
==========================================
- Hits 3284 3282 -2
- Misses 5623 5635 +12
|
If I am not mistaken, similar logic to opacity is needed that updates the
I was thinking
Yes, Regarding the style "errors": You can either configure your editor to use the provided clang-format style file or run |
First of all thanks for your contribution!
I think it's fine for it to be in |
@tryone144 and @yshui thanks for the feedback! That sounds good, I'll add an option called The reason I was reluctant to put the logic in Edit: Also, sorry, what would the behavior of |
Jus added an option and logic for blurring inactive. It seems to work, though it slows down switches between panes and occasionally does not blur my browser (qutebrowser) when it unfocuses. |
@rajansaini691 Ah, I see what you mean. Yes, I agree with @tryone144, |
BTW, @tryone144, do you have access to the CircleCI? e.g. can you restart CI jobs, etc. |
Analogous to the other
Seems so, I just restarted the failed |
I stopped work on this feature, but the majority of the work has already been done :) |
Closed due to inactivity and the PR can't be merged in its current form. |
Discussion started from issue #489.
The end goal is to create a "focus mode" that blurs inactive windows. This is very much still a work in progress.
So far I have given windows a
blur_foreground
option and have successfully gotten it to work. Still need to:--focus-mode
command line optionI am worried about strong coupling between modes and behaviors, which is preventing me from making progress. Ideally, the logic should be placed at a higher level rather than in
paint_all_new
. Does anyone more familiar with the codebase have any recommendations?