cross-posted from: https://lemmy.world/post/21426498

I use nixos + greetd + tuigreet + hyprland. I missed to mention that I wanted to disable or hide the logs that gets shows when starting hyprland from tty terminal by writing Hyprland or when using greetd tuigreet. After entering my username and password, These logs show before hyprland starts, I want to avoid that

    • Count Regal Inkwell
      link
      fedilink
      524 days ago

      Or push it to a file, just in general. That way if something goes tits up you can still check it later.

    • Yash RajOP
      link
      124 days ago

      So does it mean passing --cmd Hyprland > /dev/null to Tuigreet? If so then that wouldn’t work with my setup, as I use sessions instead of cmd. Here is how I have it in nixos

          services.greetd = {
            enable = true;
            settings = {
              default_session = {
                user = "greeter";
                command = ''
                  ${getExe' pkgs.unstable.greetd.tuigreet "tuigreet"} \
                  --time \
                  --sessions ${cfg.sessionDirs} \
                  --remember \
                  --remember-session
                '';
              };
            };
          };
      
      

      The sessionDirs is this

      modules.services.greetd.sessionDirs = ["${hyprlandPackage}/share/wayland-sessions"];
      

      This is a link to my dotfiles where I have it: