Skip to content
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

windowrules: implement #67

Draft
wants to merge 24 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
71b7698
windowrules: implement
taj-ny Nov 24, 2024
3bb8918
Merge remote-tracking branch 'origin/main' into window-rules
taj-ny Nov 24, 2024
70e5190
blurwindow: fix content blur region
taj-ny Nov 24, 2024
38d1e58
windowrules/condition: add internal subcondition
taj-ny Nov 24, 2024
c74c1c9
windowrules/properties: add blur strength
taj-ny Nov 25, 2024
ad3593e
Merge branch 'main' into window-rules
taj-ny Nov 25, 2024
e817437
Merge branch 'main' into window-rules
taj-ny Nov 25, 2024
a3c217b
blur: fix build on plasma < 6.2
taj-ny Nov 26, 2024
134afb1
blurwindow: fix build on plasma 6.0.5
taj-ny Nov 26, 2024
ed0728e
fix warnings
taj-ny Nov 26, 2024
980b95e
blurwindow: use pointer to net_wm_blur_region
taj-ny Nov 26, 2024
348b15c
blur/static-blur: use window's blur strength instead of the global one
taj-ny Nov 27, 2024
70a827d
docs/configuration: fix regular expressions
taj-ny Nov 27, 2024
cfbddf0
docs/configuration/window-rules: add examples for blur strength
taj-ny Nov 27, 2024
655cae6
docs/configuration/window-rules: fix corner antialiasing in example
taj-ny Nov 27, 2024
c2725e1
windowrules/simple: blur dialogs
taj-ny Nov 28, 2024
467be21
remove uused BlurEffect::allWindows()
taj-ny Nov 28, 2024
4716c35
rename BlurEffect::m_config to BlurEffect::m_windowRules
taj-ny Nov 28, 2024
3c84e7d
blur/static-blur: only invalidate texture on desktop update when the …
taj-ny Dec 7, 2024
b4954a0
Merge remote-tracking branch 'origin/main' into window-rules
taj-ny Jan 3, 2025
0a751c0
fix some stuff broken by the merge
taj-ny Jan 4, 2025
48d8c9a
flake/inputs/nixpkgs: use nixos-unstable
taj-ny Jan 5, 2025
94af923
window: don't update properties on geometry change
taj-ny Jan 5, 2025
c434331
Merge remote-tracking branch 'origin/main' into window-rules
taj-ny Jan 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 134 additions & 28 deletions docs/configuration.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ set(forceblur_SOURCES
blur.cpp
blur.qrc
main.cpp
settings.cpp
windowrules/windowrulecondition.cpp
windowrules/windowrule.cpp
windowrules/windowrulelist.cpp
windowrules/windowproperties.cpp
blurwindow.cpp
)

kconfig_add_kcfg_files(forceblur_SOURCES
blurconfig.kcfgc
config/config.kcfgc
)

add_library(forceblur MODULE ${forceblur_SOURCES})
Expand All @@ -29,6 +33,8 @@ target_link_libraries(forceblur PRIVATE

KF6::ConfigGui
)

target_compile_definitions(forceblur PRIVATE CONFIG_KWIN)
if (${KDecoration3_FOUND})
target_link_libraries(forceblur PRIVATE KDecoration3::KDecoration)
else()
Expand Down
Loading
Loading