nix Nix Hyprland share picker theme
Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearTA
    TalkierTick9904
    10 months ago 100%

    I tried launching hyprland-share-picker with different QT_QPA_PLATFORMTHEME variables and setting it to gtk3 works, but when the window loses focus it looks bad, so I think the qt6ct style is not working for some reason.

    Here is my home.nix:

    {
      ...
      gtk = {  
        enable = true;  
        theme.name = "Catppuccin-Mocha-Standard-Blue-Dark";  
        cursorTheme.name = "Adwaita";  
        cursorTheme.size = 24;  
        iconTheme.name = "Tela-circle-dracula-dark";  
        font.name = "Inter Nerd Font";  
        font.size = 12;  
      };  
      home.pointerCursor = {  
        gtk.enable = true;  
        package = pkgs.gnome-themes-extra;  
        name = "Adwaita";  
        size = 24;  
      };  
      qt = {  
        enable = true;  
        platformTheme = "qtct";  
      };
      ...
    }
    
    1
  • nix
    Nix TalkierTick9904 10 months ago 100%
    Hyprland share picker theme

    I am trying to apply qt theme to share picker. I have QT\_QPA\_PLATFORMTHEME variable set to qt5ct and working qt configuration in home-manager, but share picker uses ugly default theme. [Wiki instructions](https://wiki.hyprland.org/Useful-Utilities/Hyprland-desktop-portal/#share-picker-doesnt-use-the-system-theme) dont work either. [share picker](https://preview.redd.it/eg1gc7ptvw0c1.png?width=568&format=png&auto=webp&s=a89926c7b53f1c2ff63555360ffdacc0ddf7c62b) ​ [qt5ct and qt6ct](https://preview.redd.it/2iouy8gvvw0c1.png?width=1528&format=png&auto=webp&s=cbd552ac4c201b78bcc60db2050f8e5947b74c56)

    1
    3