Skip to content

Failed to apply custom GTK icon theme, color theme, and cursor theme outside Demo mode #113

Description

@asumbek

Hello, I'm using regreet as greeter when booting NixOS. I have the following config to customize regreet.

  programs.regreet = {
    enable = true;
    theme = {
      name = "Lounge-night-compact";
      package = pkgs.lounge-gtk-theme;
    };
    cursorTheme = {
      name = "catppuccin-mocha-yellow-cursors";
      package = pkgs.catppuccin-cursors.mochaYellow;
    };
    iconTheme = {
      name = "Lounge-aux";
      package = pkgs.buildEnv {
        name = "regreet-icons";
        paths = with pkgs; [
          adwaita-icon-theme
          lounge-gtk-theme
        ];
      };
    };
    settings = {
      background = {
        path = ../resources/regreet-wallpaper.png;
        fit = "Contain";
      };
    };
  };

The following works in Demo mode. But when I tried it when logging in, it doesn't work at all.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions