feat(home/waybar): Major overhaul

This commit is contained in:
punkfairie 2025-03-02 15:22:47 -08:00
parent 1ec043f144
commit cc6fb7de18
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -21,91 +21,64 @@ in {
systemd.enable = true; systemd.enable = true;
# https://gitlab.com/Zaney/zaneyos/-/blob/main/config/waybar.nix # https://gitlab.com/Zaney/zaneyos/-/blob/main/config/waybar.nix
settings = [ settings = let
niri =
config.programs.niri
# HM module doesn't include an enable option...
// {
enable = config.marleyos.wayland.niri.enable;
};
in [
{ {
layer = "top"; layer = "top";
position = "top"; position = "top";
modules-left = [ modules-left =
"custom/startmenu" [
"hyprland/window" "custom/startmenu"
"pulseaudio" ]
"cpu" ++ (lib.optionals niri.enable [
"memory" "niri/window"
"idle_inhibitor" ])
]; ++ [
modules-center = ["hyprland/workspaces"]; "pulseaudio"
modules-right = [ "cpu"
"custom/notifications" "memory"
"custom/exit" "idle_inhibitor"
"battery" ];
"tray" modules-center =
"clock" []
]; ++ (lib.optionals niri.enable [
"niri/workspaces"
]);
modules-right =
[
"custom/notifications"
"tray"
]
++ (lib.optionals (!config.marleyos.isDesktop) [
"battery"
])
++ [
"network"
"custom/exit"
"clock"
];
"hyprland/workspaces" = let "custom/startmenu" = {
hyprctl = tooltip = false;
lib.getExe' config.wayland.windowManager.hyprland.package "hyprctl"; format = "";
in { on-click = let
format = "{name}"; inherit (config.marleyos.apps) launcher;
format-icons = { in "sleep 0.1 && ${lib.getExe launcher.package} ${launcher.command}";
default = " ";
active = " ";
urgent = " ";
};
on-scroll-up = "${hyprctl} dispatch workspace e+1";
on-scroll-down = "${hyprctl} dispatch workspace e-1";
}; };
"clock" = { "niri/window" = lib.mkIf niri.enable {
format = " {:L%I:%M %p}";
tooltip = true;
tooltip-format = "<big>{:%A, %d.%B %Y }</big>\n<tt><small>{calendar}</small></tt>";
};
"hyprland/window" = {
max-length = 22;
separate-outputs = false;
rewrite = { rewrite = {
"" = " 🙈 No Windows? "; "" = " 🙈 No Windows? ";
}; };
}; };
"memory" = {
interval = 5;
format = " {}%";
tooltip = true;
};
"cpu" = {
interval = 5;
format = " {usage:2}%";
tooltip = true;
};
"disk" = {
format = " {free}";
tooltip = true;
};
"network" = {
format-icons = [
"󰤯"
"󰤟"
"󰤢"
"󰤥"
"󰤨"
];
format-ethernet = " {bandwidthDownOctets}";
format-wifi = "{icon} {signalStrength}%";
format-disconnected = "󰤮";
tooltip = false;
};
"tray" = {
spacing = 12;
};
"pulseaudio" = { "pulseaudio" = {
format = "{icon} {volume}% {format_source}"; format = "{icon} {volume}% {format_source}";
format-bluetooth = "{volume}% {icon} {format_source}"; format-bluetooth = "{volume}% {icon} {format_source}";
@ -129,18 +102,16 @@ in {
on-click = "sleep 0.1 && ${lib.getExe pkgs.pwvucontrol}"; on-click = "sleep 0.1 && ${lib.getExe pkgs.pwvucontrol}";
}; };
"custom/exit" = { "cpu" = {
tooltip = false; interval = 5;
format = ""; format = " {usage:2}%";
on-click = "sleep 0.1 && ${lib.getExe config.programs.wlogout.package}"; tooltip = true;
}; };
"custom/startmenu" = { "memory" = {
tooltip = false; interval = 5;
format = ""; format = " {}%";
on-click = let tooltip = true;
inherit (config.marleyos.apps) launcher;
in "sleep 0.1 && ${lib.getExe launcher.package} ${launcher.command}";
}; };
"idle_inhibitor" = { "idle_inhibitor" = {
@ -152,6 +123,19 @@ in {
tooltip = "true"; tooltip = "true";
}; };
"niri/workspaces" = lib.mkIf niri.enable (let
niriMsg = msg: "${lib.getExe niri.package} msg action ${msg}";
in {
format = "{value}";
format-icons = {
default = " ";
active = " ";
urgent = " ";
};
on-scroll-up = niriMsg "focus-workspace-up";
on-scroll-down = niriMsg "focus-workspace-down";
});
"custom/notifications" = let "custom/notifications" = let
swaync-client = swaync-client =
lib.getExe' config.services.swaync.package "swaync-client"; lib.getExe' config.services.swaync.package "swaync-client";
@ -174,6 +158,10 @@ in {
escape = true; escape = true;
}; };
"tray" = {
spacing = 12;
};
"battery" = { "battery" = {
states = { states = {
warning = 30; warning = 30;
@ -197,6 +185,32 @@ in {
on-click = ""; on-click = "";
tooltip = false; tooltip = false;
}; };
"network" = {
format-icons = [
"󰤯"
"󰤟"
"󰤢"
"󰤥"
"󰤨"
];
format-ethernet = " {bandwidthDownOctets}";
format-wifi = "{icon} {signalStrength}%";
format-disconnected = "󰤮";
tooltip = false;
};
"custom/exit" = {
tooltip = false;
format = "";
on-click = "sleep 0.1 && ${lib.getExe config.programs.wlogout.package}";
};
"clock" = {
format = " {:L%I:%M %p}";
tooltip = true;
tooltip-format = "<big>{:%A, %d.%B %Y }</big>\n<tt><small>{calendar}</small></tt>";
};
} }
]; ];
@ -252,7 +266,7 @@ in {
font-weight: bold; font-weight: bold;
border-radius: 16px; border-radius: 16px;
color: @base00; color: @base00;
background: linear-gradient(45deg, @base08, @iris); background: linear-gradient(45deg, @base08, @base0D);
opacity: 0.8; opacity: 0.8;
transition: ${transition}; transition: ${transition};
} }