Closed moncheeta closed 2 years ago
What version of waybar are you using? The hyprland/window module was added recently and only works in the git version.
I'm using Waybar v0.9.13
Version 0.9.13 does not support hyprland. You need to build the current development version.
I installed the latest git version on NixOS by overriding the package with a nix overlay and it should be on the latest git revision.
I still get the error: [warning] module hyprland/window: Unknown module: hyprland/window
and no module.
How can I check if I am actually on the latest git version, because waybar --version
still shows Waybar v0.9.13
?
Does waybar need any extra dependencies for the hyprland module?
oh nvm it works i forgor to rebuild my home-manager config and it used the nixpkgs version of waybar every time i tried if anyone wants to use my overlay:
final: prev:
{
waybar = (prev.waybar.override {
catch2 = prev.catch2_3;
swaySupport = false;
}).overrideAttrs (oldAttrs: rec {
version = "1374b0fce40f283b113e051f0558564fa1d9ad22";
src = prev.fetchFromGitHub {
owner = "Alexays";
repo = "Waybar";
rev = version;
sha256 = "sha256-UG233AXx7xU9O3/hs5mIXun7PCYibJvlDL1tQhB5gxE=";
};
buildInputs = oldAttrs.buildInputs ++ [ prev.wayland-protocols prev.libappindicator-gtk3 prev.libinput prev.jack2 ];
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
}
I'm using Hyprland on NixOS and I put
"hyprland/window"
in my configuration. When I run waybar, I get[warning] module hyprland/window: Unknown module: hyprland/window
. Am I doing something wrong? It's in the wiki.Here's my configuration: