fix(hyprland): Resolve Firefox blur issue
Address the issue where Firefox windows were still blurring when inactive, despite a specific window rule. - Refined the in to use a simplified and more robust regex, , ensuring it targets all relevant Firefox profiles. - Adjusted the opacity for inactive Firefox windows to (from ) in , as a potential workaround for Hyprland's blur handling with fully opaque windows. - Ensured is and is in for the global blur effect.
This commit is contained in:
@@ -25,7 +25,7 @@
|
|||||||
windowrulev2 = [
|
windowrulev2 = [
|
||||||
"workspace special:youtube, class:^(youtube)$"
|
"workspace special:youtube, class:^(youtube)$"
|
||||||
"workspace special:jellyfin, class:^(jellyfin)$"
|
"workspace special:jellyfin, class:^(jellyfin)$"
|
||||||
"opacity 1.0 1.0, class:^(firefox)$"
|
"opacity 0.99 0.99, class:(firefox|youtube|jellyfin)"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
decoration = {
|
decoration = {
|
||||||
rounding = 0;
|
rounding = 0;
|
||||||
active_opacity = 0.99;
|
active_opacity = 0.99;
|
||||||
inactive_opacity = 0.7;
|
inactive_opacity = 0.80;
|
||||||
shadow = {
|
shadow = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
range = 2;
|
range = 2;
|
||||||
|
|||||||
Reference in New Issue
Block a user