-
-
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
Corner Radius Fix for GLX #1261
Closed
Closed
Commits on May 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ba8d120 - Browse repository at this point
Copy the full SHA ba8d120View commit details -
Configuration menu - View commit details
-
Copy full SHA for fcc32ee - Browse repository at this point
Copy the full SHA fcc32eeView commit details
Commits on May 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fc39512 - Browse repository at this point
Copy the full SHA fc39512View commit details -
Added Desktop Switch Triggers for different animations
This adds support for desktop switching animations by keeping track of _NET_CURRENT_DESKTOP atom on the root window. As far as I understand this atom is set by window managers and so if it changes we can know that it's a desktop switch happening. Unfortunately window manager may need to set this BEFORE hiding/showing windows so we can animate correctly, me personally using FluxBox and this quick change pijulius/fluxbox@83ee4db makes it work just fine. It adds the following animation triggers: * workspace-out * workspace-out-inverse * workspace-in * workspace-in-inverse Unfortunately had to add inverse variables too as you may navigate to the next workspace from for e.g. 1st to 2nd but you may also go to 2nd from 1st and in that case the animations have to be totally different. Here is a config example for switching workspace: animations = ({ triggers = ["workspace-out"]; offset-y = { timing = "0.2s cubic-bezier(0.21, 0.02, 0.76, 0.36)"; start = "0"; end = "-window-height"; }; shadow-offset-y = "offset-y"; opacity = { timing = "0.2s linear"; start = "window-raw-opacity-before"; end = "window-raw-opacity"; }; blur-opacity = "opacity"; shadow-opacity = "opacity"; }, { triggers = ["workspace-out-inverse"]; offset-y = { timing = "0.2s cubic-bezier(0.21, 0.02, 0.76, 0.36)"; start = "0"; end = "window-height + window-y"; }; shadow-offset-y = "offset-y"; opacity = { timing = "0.2s linear"; start = "window-raw-opacity-before"; end = "window-raw-opacity"; }; blur-opacity = "opacity"; shadow-opacity = "opacity"; }, { triggers = ["workspace-in"]; offset-y = { timing = "0.2s cubic-bezier(0.24, 0.64, 0.79, 0.98)"; start = "window-height + window-y"; end = "0"; }; shadow-offset-y = "offset-y"; opacity = { timing = "0.2s linear"; start = "0"; end = "window-raw-opacity"; }; blur-opacity = "opacity"; shadow-opacity = "opacity"; }, { triggers = ["workspace-in-inverse"]; offset-y = { timing = "0.2s cubic-bezier(0.24, 0.64, 0.79, 0.98)"; start = "-window-height"; end = "0"; }; shadow-offset-y = "offset-y"; opacity = { timing = "0.2s linear"; start = "0"; end = "window-raw-opacity"; }; blur-opacity = "opacity"; shadow-opacity = "opacity"; })
Configuration menu - View commit details
-
Copy full SHA for cee741a - Browse repository at this point
Copy the full SHA cee741aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17d048c - Browse repository at this point
Copy the full SHA 17d048cView commit details
Commits on May 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3d0515d - Browse repository at this point
Copy the full SHA 3d0515dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dc4671 - Browse repository at this point
Copy the full SHA 6dc4671View commit details
Commits on May 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c51fd2e - Browse repository at this point
Copy the full SHA c51fd2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2f201f - Browse repository at this point
Copy the full SHA e2f201fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14e5c61 - Browse repository at this point
Copy the full SHA 14e5c61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16b1e02 - Browse repository at this point
Copy the full SHA 16b1e02View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b8a753 - Browse repository at this point
Copy the full SHA 2b8a753View commit details
Commits on May 26, 2024
-
Add possibility for frame opacity to include menubar/toolbar and so on
This adds the possibility to define the frame opacity but also include all colors in the window that match the frame color and make those also transparent. It even supports the possibility to define the tolerance for color difference between the frame and other parts of the window and make those or gradually more opaque or also transparent just like the frame. NOTE: tested with flat window frame so not sure how it will work with gradient frames and also only added for GLX atm, lets see if it's interesting enough to be included in the core or otherwise will just keep it for myself. It adds the following config options: # Enable frame opacity for colors that match the frame frame-opacity-for-same-colors = true; # Tolerance for similar colors (0 exact match, 1 all colors, default 0.5) frame-opacity-for-same-colors-constraint = 0.5; # Make different colors opaque by a factor of x (default 5) frame-opacity-for-same-colors-multiplier = 5; and for them to work you will have to active frame opacity for e.g. frame-opacity = 0.7; With these options you can now have blurred transparent frame + menubar + toolbar or on popup like File Open have transparent window background but list of files be opaque and so on.
Configuration menu - View commit details
-
Copy full SHA for 968112a - Browse repository at this point
Copy the full SHA 968112aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 751a971 - Browse repository at this point
Copy the full SHA 751a971View commit details
Commits on May 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a284d33 - Browse repository at this point
Copy the full SHA a284d33View commit details
Commits on May 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 66fd22f - Browse repository at this point
Copy the full SHA 66fd22fView commit details
Commits on May 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9aff31b - Browse repository at this point
Copy the full SHA 9aff31bView commit details
Commits on May 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 36ee6ff - Browse repository at this point
Copy the full SHA 36ee6ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 793e11a - Browse repository at this point
Copy the full SHA 793e11aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4deef66 - Browse repository at this point
Copy the full SHA 4deef66View commit details
Commits on Jun 1, 2024
-
Use texelFetch to get frame color and ignore border
Tried to come up with better way to get the color of the frame and if I understood texelFetch correctly it should gather the correct pixel now and even exclude the border in case your windows have some.
Configuration menu - View commit details
-
Copy full SHA for 3fbe856 - Browse repository at this point
Copy the full SHA 3fbe856View commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 400e517 - Browse repository at this point
Copy the full SHA 400e517View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9df22a4 - Browse repository at this point
Copy the full SHA 9df22a4View commit details
Commits on Jun 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0834219 - Browse repository at this point
Copy the full SHA 0834219View commit details
Commits on Jun 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 85819e7 - Browse repository at this point
Copy the full SHA 85819e7View commit details
Commits on Jun 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a312328 - Browse repository at this point
Copy the full SHA a312328View commit details
Commits on Jun 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a0e8188 - Browse repository at this point
Copy the full SHA a0e8188View commit details
Commits on Jun 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3409641 - Browse repository at this point
Copy the full SHA 3409641View commit details
Commits on Jul 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b8fe932 - Browse repository at this point
Copy the full SHA b8fe932View commit details
Commits on Jul 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e489a48 - Browse repository at this point
Copy the full SHA e489a48View commit details
Commits on Jul 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ee5e13e - Browse repository at this point
Copy the full SHA ee5e13eView commit details
Commits on Aug 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e695a77 - Browse repository at this point
Copy the full SHA e695a77View commit details
Commits on Aug 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 47590df - Browse repository at this point
Copy the full SHA 47590dfView commit details
Commits on Aug 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4b5c78b - Browse repository at this point
Copy the full SHA 4b5c78bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4644815 - Browse repository at this point
Copy the full SHA 4644815View commit details
Commits on Aug 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 585d86b - Browse repository at this point
Copy the full SHA 585d86bView commit details
Commits on Aug 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d1d9d59 - Browse repository at this point
Copy the full SHA d1d9d59View commit details
Commits on Aug 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fc0938b - Browse repository at this point
Copy the full SHA fc0938bView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.