diff --git a/options/custom/desktops/hyprland/plugins.nix b/options/custom/desktops/hyprland/plugins.nix index a5813ae..a422c70 100644 --- a/options/custom/desktops/hyprland/plugins.nix +++ b/options/custom/desktops/hyprland/plugins.nix @@ -28,6 +28,7 @@ in { "plugin:hyprbars:nobar, class:^discord$, title:^Discord Updater$" "plugin:hyprbars:nobar, class:^dropdown$" "plugin:hyprbars:nobar, class:^steam_app_.+$" + "plugin:hyprbars:nobar, class:^Xdg-desktop-portal-gtk$" "plugin:hyprbars:nobar, title:^Picture.in.[Pp]icture$" ]; diff --git a/options/custom/desktops/hyprland/rules.nix b/options/custom/desktops/hyprland/rules.nix index baf0947..7c312dd 100644 --- a/options/custom/desktops/hyprland/rules.nix +++ b/options/custom/desktops/hyprland/rules.nix @@ -230,6 +230,7 @@ in { ### Overrides (class "steam_app_1473350" ["workspace 0"]) # (the) Gnorp Apologue (class "Tap Wizard 2.x86_64" ["workspace 0"]) + (class "Xdg-desktop-portal-gtk" ["noborder" "noshadow"]) #!! Expressions are not wrapped in ^$ (fields { diff --git a/options/custom/settings/dconf/apps.nix b/options/custom/settings/dconf/apps.nix index 36c3dae..46f339f 100644 --- a/options/custom/settings/dconf/apps.nix +++ b/options/custom/settings/dconf/apps.nix @@ -75,6 +75,10 @@ in { }; # GNOME Files + "org/gtk/settings/file-chooser" = { + show-hidden = mkBoolean true; + }; + "org/gtk/gtk4/settings/file-chooser" = { show-hidden = mkBoolean true; };