Files
TheaninovOS/desktops/hyprland/waybar.nix
2023-10-29 00:40:45 +02:00

31 lines
564 B
Nix

{
enable = true;
settings = {
mainBar = {
layer = "top";
position = "top";
height = 48;
output = "HDMI-A-1";
modules-center = [ "wlr/taskbar" ];
modules-right = [ "custom/weather" "clock" ];
"wlr/taskbar" = {
all-outputs = true;
};
"custom/weather" = {
format = "{}";
tooltip = true;
interval = 3600;
exec = "wttrbar --location Berlin";
return-type = "json";
};
};
};
style = ''
window#waybar {
background: black;
}
'';
}