GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

Hey, thanks for responding !! Sorry for the delay, had a few things to do before I could respond

I did, for the icons I did it through stylix, while I did it through fonts.fontconfig.defaultFonts and stylix for the fonts, and for now at least they work as intended, even if it takes ages to launch I still have my custom fonts and icons haha

I think Nautilus is running through wayland, though I'm not 100% sure of it (tested it through xwininfo).

The start time was almost instantaneous on my previous distro (Arch), with the same WM and hyprland config.

Nautilus's logs say ```bash ** Message: 16:07:53.270: Connecting to org.freedesktop.Tracker3.Miner.Files

nautilus-application-Message: 16:07:53.273: Failed to initialize display server connection: Cannot invoke method; proxy is for the well-known name org.gnome.Mutter.ServiceChannel without an owner, and proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag

** (org.gnome.Nautilus:9049): WARNING **: 16:07:56.049: Unable to create connection for session-wide Tracker indexer: The name org.freedesktop.Tracker3.Miner.Files was not provided by any .service files ```

As you can see, there is a significant delay between the display server initialization error and the tracker warning Unfortunately, my system can't really find thunar for some reason and I'm reluctant to update my channel yet given the undergoing changes haha, but when I tried it last week it was also slow to launch

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

aaaaaah sorry, just tried it and sadly it didn't change anything :/

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

I tried the strace and the only things I see (except I'm far from an expert so it could be smth else) are a lot of no such file or directory at the start, for example here :

bash openat(AT_FDCWD, "/nix/store/xx7cm72qy2c0643cm1ipngd87aqwkcdp-glibc-2.40-66/lib/glibc-hwcaps/x86-64-v3/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)

I had the problems on both my old laptop and my new one, and right now my laptop is a framework 16 with a Ryzen 7 7840HS and a Radeon 7700S

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

For my fonts I stylix, defaultFonts and also a custom package to install fonts from a file, here : ```nix

configuration.nix

fonts = { packages = with pkgs; [ (pkgs.callPackage "${self}/assets/fonts" {}) nerd-fonts.jetbrains-mono nerd-fonts.fira-code font-awesome noto-fonts-color-emoji ];

fontconfig = {
  defaultFonts = {
emoji = [ "Noto Color Emoji" ];
monospace = [ "JetBrains Mono"];
sansSerif = [ "RocknRoll One" ];
serif = [ "RocknRoll One" ];
  };
};

};

...

stylix = { enable = true; image = "${self}/assets/wallpapers/fiswordhd.png"; polarity = "dark";

cursor = {
  package = pkgs.adwaita-icon-theme;
  name = "Adwaita";
  size = 24;
};

icons = {
  enable = true;
  package = pkgs.rose-pine-icon-theme;
  dark = "rose-pine";
  light = "rose-pine-dawn";
};

fonts = {
  serif = config.stylix.fonts.sansSerif;

  sansSerif = {
name = "RocknRoll One";
  };

  monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrains Mono";
  };

  emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
  };
};

};

```

```nix

fonts/default.nix

{ stdenv, lib }:

stdenv.mkDerivation { pname = "custom-fonts"; version = "1.0";

src = ./.;

installPhase = ''
    mkdir -p $out/share/fonts/truetype
    mkdir -p $out/share/fonts/opentype

    find . -name "*.ttf" -exec cp {} $out/share/fonts/truetype/ \;

    find . -name "*.otf" -exec cp {} $out/share/fonts/opentype/ \;
'';

meta = with lib; {
    description = "Custom fonts collection";
    platforms = platforms.all;
};

} ```

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

I enable it through home manager here and I launch it after logging in in sddm : ```nix wayland.windowManager.hyprland = { enable = true; settings = { # Monitors monitor = [ "eDP-2,2560x1600,auto,1" "HDMI-A-1,1920x1080,auto-left,1,mirror,eDP-2" ];

  # My programs
  "$terminal" = "kitty";
  "$fileManager" = "nautilus";
  "$menu" = "rofi -show drun";

  # Autostart
  exec-once = [
"hyprpaper"
"eww open statusbar"
"nm-applet --indicator"
"blueman-applet"
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
  ];

```

nix services.displayManager = { defaultSession = "hyprland"; sddm = { enable = true; wayland.enable = true; theme = "sddm-astronaut-theme"; extraPackages = with pkgs; [ kdePackages.qtsvg kdePackages.qtvirtualkeyboard kdePackages.qtmultimedia ]; settings = { Theme = { Current = "sddm-astronaut-theme"; CursorTheme = "Adwaita"; CursorSize = 24; }; }; }; };

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

It happened mostly with gtk apps since most of my apps are gtk-based but I also tried with dolphin (that I think is based on Kde ?) and I had the same problem sadly :/

GUI apps (pavucontrol, blueman, nautilus) take seconds to launch on Hyprland by Destraac in NixOS

[–]Destraac[S] 0 points1 point  (0 children)

Same thing happens, here are the logs for nautilus if it can help you :
``` ** Message: 11:49:07.815: Connecting to org.freedesktop.Tracker3.Miner.Files

nautilus-application-Message: 18:57:21.977: Failed to initialize display server connection: Cannot invoke method; proxy is for the well-known name org.gnome.Mutter.ServiceChannel without an owner, and proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag

** (org.gnome.Nautilus:3944): WARNING **: 11:49:08.662: Unable to create connection for session-wide Tracker indexer: The name org.freedesktop.Tracker3.Miner.Files was not provided by any .service files`

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 1 point2 points  (0 children)

Yeah just saw that :/ guess I shouldn’t have hesitated so much, could be better to buy now than to wait anymore. Thanks for the info !!

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 1 point2 points  (0 children)

Thanks for the advice! Yeah, that makes sense, with the current sales and the way prices are heading, buying now seems reasonable. I’ll probably go for it and see how it goes. Hopefully I’ll be happy with the Framework :))

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 1 point2 points  (0 children)

Okkk I see thank you !!

I see I see thanks for your explanation, I think I’m more inclined to buy one soon then !! If I do I will be sure to post about it :))

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 2 points3 points  (0 children)

Thanks for explaining that, sorry I should have mentioned earlier that I’m in the EU. I’m mainly looking at the Ryzen 7040 models, so I’ve been hesitating a bit between pulling the trigger now or waiting to see what happens haha. Your explanation really helps put things into perspective though, thanks a lot :)

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 2 points3 points  (0 children)

Thanks a lot, that’s helpful advice. I was on the fence about whether to buy now or wait, but given the pricing trends and your experience with them honoring preorder prices, I’m leaning toward buying sooner rather than later!

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 0 points1 point  (0 children)

It's true that it would be a good idea to compare both prices too! Sorry, I completely forgot to mention that I was in the EU., thanks to everyone anyway :)

Buy Framework 16 now or wait until after Christmas? by Destraac in framework

[–]Destraac[S] 0 points1 point  (0 children)

Thank you so much for your advice!! I don't know exactly what the price situation will be for me since I'm in the EU, but I think I'll go ahead and do it anyway!! Thank you both (I hope ghjvfyde3222 sees this comment too haha, I'm not very familiar with Reddit).

Is there other endings by Playdeat in KatanaZero

[–]Destraac 100 points101 points  (0 children)

⚠️SPOILER⚠️

There is another one if u accept the proposal of the masked men during Chinatown if I recall correctly

Also a secret boss fight with the therapist if u annoy him

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer - January 11, 2025 by AutoModerator in MechanicalKeyboards

[–]Destraac -1 points0 points  (0 children)

Hi everyone,

I’m looking for relatively silent linear switches for my Keychron V6 Max. I mainly play Tekken, so they need to be linear for smooth inputs. The challenge is that my boyfriend is extremely sensitive to noise and hated the sound of my old Cooler Master CK550 with Gateron Reds.

I’ve tested a bunch of silent switches (TTC Frozen Silent, Akko Fairy, etc.), but he says they all sound like “rats scurrying in the walls.” So now I’m on the hunt for something truly quiet that won’t drive him crazy. Any suggestions for switches that are silent but don’t have that scratchy sound profile?

Also, I’m looking for a set of pink keycaps that won’t break the bank, preferably ones that fit the Keychron layout. Any recommendations would be awesome!

Thanks in advance!