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

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

Open
mbekkomo opened this issue Feb 5, 2025 · 1 comment

Comments

@mbekkomo
Copy link

mbekkomo commented Feb 5, 2025

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.

@max-ishere
Copy link
Contributor

A couple of questions:

  1. Does regreet start fine with greetd, just isn't themed?
  2. Is the demo mode run by the user who has their GTK already themed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants