Files
nixos-config/user/sweetbread/modules/waybar.nix
T

303 lines
7.2 KiB
Nix
Raw Normal View History

2026-04-07 22:40:16 +03:00
{ osConfig, config, pkgs, lib, ... }: {
home.packages = with pkgs; [
playerctl
cava
pulsemixer
2026-06-03 17:56:40 +03:00
monocraft
font-awesome
nerd-fonts.symbols-only
2026-04-07 22:40:16 +03:00
];
programs.waybar = {
enable = true;
systemd.enable = true;
settings.mainBar = {
spacing = 8;
modules-left = [
"hyprland/workspaces"
"hyprland/language"
"keyboard-state"
"cava"
];
modules-center = [
"mpris"
];
modules-right = [
"tray"
"group/system"
"pulseaudio"
"battery"
"clock"
];
cava = {
bars = 14;
sleep_timer = 5;
hide_on_silence = true;
bar_delimiter = 0;
input_delay = 0;
format-icons = [" " "" "" "" "" "" "" "" ""];
};
clock = {
tooltip = false;
interval = 5;
format = "{:L%d %b - %H:%M %a}";
};
pulseaudio = {
2026-06-05 02:16:23 +03:00
format = "{icon} {volume}%";
2026-04-07 22:40:16 +03:00
format-icons = {
headphone = "";
hands-free = "";
headset = "";
phone = "";
phone-muted = "";
portable = "";
car = "";
default = ["" ""];
};
on-click = "ghostty --title=pulsemixer -e pulsemixer";
};
mpris = {
format = "{dynamic}";
dynamic-len = if osConfig.host.laptop then 32 else 64;
dynamic-order = [ "title" "artist" "album" ];
};
battery = {
interval = 5;
states = {
warning = 30;
critical = 15;
};
format = "{icon} {capacity}%";
format-icons = {
default = ["󰂎" "󰁺" "󰁻" "󰁼" "󰁽" "󰁾" "󰁿" "󰂀" "󰂁" "󰂂" "󰁹"];
charging = ["󰢟" "󰢜" "󰂆" "󰂇" "󰂈" "󰢝" "󰂉" "󰢞" "󰂊" "󰂋" "󰂅"];
};
};
"keyboard-state" = {
capslock = true;
format = "{icon}";
format-icons = {
locked = "CAPS";
unlocked = "";
};
};
"hyprland/language" = {
format-en = "en";
format-ru = "ru";
};
"group/system" = {
orientation = "inherit";
drawer = {
transition-duration = 500;
transition-left-to-right = false;
};
modules = [
"network"
"custom/mem"
"cpu"
"temperature"
];
};
network = {
format = "{ifname}";
format-wifi = " {essid} ({signalStrength}%)";
format-ethernet = "{ifname}";
format-disconnected = "";
tooltip-format = "{ipaddr}";
max-length = 50;
on-click = "ghostty --title=nmtui -e nmtui";
};
"custom/weather" = {
format = "{}";
tooltip = true;
interval = 1800;
exec = "python3 $HOME/.config/waybar/scripts/wttr.py";
return-type = "json";
};
"custom/mem" = {
format = "{} ";
interval = 3;
exec = "free -h | awk '/Mem:/{printf $3}'";
tooltip = false;
};
cpu = {
interval = 2;
format = "{usage}% ";
min-length = 6;
};
temperature = {
hwmon-path = "/sys/class/hwmon/hwmon5/temp1_input";
critical-threshold = 80;
format = "{temperatureC}°C {icon}";
format-icons = ["" "" "" "" ""];
tooltip = false;
};
};
style = let
colors = config.lib.stylix.colors.withHashtag;
2026-06-08 03:24:54 +03:00
accent = colors.${config.stylix.accent};
2026-04-07 22:40:16 +03:00
radius = "6px";
scssFile = pkgs.writeText "waybar.scss" /*scss*/ ''
window#waybar {
background: transparent;
color: ${colors.base05};
border-radius: ${radius};
2026-06-05 02:16:23 +03:00
font-family: "Symbols Nerd Font Mono", "Monocraft", "Font Awesome 7 Free";
2026-04-07 22:40:16 +03:00
font-weight: bold;
font-size: .85em;
& > * { padding: 8px; }
2026-03-13 00:06:32 +03:00
}
2026-04-07 22:40:16 +03:00
#cava,
#language,
#mpris,
#pulseaudio,
#network,
#battery,
#cpu,
#temperature,
#keyboard-state label.locked,
#custom-mem,
#clock {
background: ${colors.base00};
border-radius: ${radius};
padding: 8px;
}
2026-03-13 00:06:32 +03:00
2026-04-07 22:40:16 +03:00
#workspaces,
#tray {
background: ${colors.base00};
2026-03-13 00:06:32 +03:00
border-radius: ${radius};
}
2026-04-07 22:40:16 +03:00
#workspaces button {
color: ${colors.base05};
padding: 4px;
border-radius: ${radius};
border: 1pt solid transparent;
2026-03-13 00:06:32 +03:00
2026-04-07 22:40:16 +03:00
&:hover { background: ${colors.base01}; }
2026-03-13 00:06:32 +03:00
2026-04-07 22:40:16 +03:00
&.active {
2026-06-08 03:24:54 +03:00
background: ${accent};
2026-04-07 22:40:16 +03:00
color: ${colors.base00};
&:hover {
2026-06-08 03:24:54 +03:00
border-color: ${accent};
2026-04-07 22:40:16 +03:00
background: ${colors.base01};
2026-06-08 03:24:54 +03:00
color: ${accent};
2026-04-07 22:40:16 +03:00
}
2026-03-13 00:06:32 +03:00
}
}
2026-04-07 22:40:16 +03:00
#mpris {
&:hover { background: ${colors.base01}; }
&.paused { opacity: .5; }
}
#tray {
widget {
border: 1pt solid transparent;
border-radius: ${radius};
&:hover { background: ${colors.base01}; }
& > image { padding: 8px; }
}
& > .passive { border-color: ${colors.base02}; }
& > .needs-attention { border-color: ${colors.base09}; }
2026-03-13 00:06:32 +03:00
}
2026-04-07 22:40:16 +03:00
#pulseaudio {
&:hover { background: ${colors.base01}; }
&.muted {
background: ${colors.base08};
2026-03-13 00:06:32 +03:00
color: ${colors.base00};
2026-04-07 22:40:16 +03:00
&:hover {
color: ${colors.base08};
background: ${colors.base01};
}
2026-03-13 00:06:32 +03:00
}
2026-04-07 22:40:16 +03:00
}
#network {
&:hover { background: ${colors.base01}; }
&.disconnected {
2026-03-13 00:06:32 +03:00
color: ${colors.base00};
2026-04-07 22:40:16 +03:00
background: ${colors.base08};
2026-03-13 00:06:32 +03:00
}
}
2026-04-07 22:40:16 +03:00
#system .drawer-child > * {
margin-right: 4px
2026-03-13 00:06:32 +03:00
}
2026-04-07 22:40:16 +03:00
#keyboard-state label.locked {
2026-03-13 00:06:32 +03:00
background-color: ${colors.base00};
color: ${colors.base08};
}
2026-04-07 22:40:16 +03:00
#battery {
&.plugged { color: ${colors.base0D}; }
2026-06-08 03:24:54 +03:00
&.charging { color: ${accent}; }
2026-04-07 22:40:16 +03:00
&:not(.charging) {
&.warning {
color: ${colors.base00};
background-color: ${colors.base09};
}
&.critical {
background-color: ${colors.base08};
color: ${colors.base00};
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
}
&.full {
color: ${colors.base00};
2026-06-08 03:24:54 +03:00
background: ${accent};
2026-04-07 22:40:16 +03:00
}
}
@keyframes blink {
to {
background-color: ${colors.base00};
color: ${colors.base08};
}
}
'';
cssFile = pkgs.runCommand "waybar.css" {
nativeBuildInputs = [ pkgs.dart-sass ];
} "sass ${scssFile} $out";
in builtins.readFile cssFile;
};
2026-03-13 00:06:32 +03:00
wayland.windowManager.hyprland.settings.layerrule = [
"blur on, match:namespace waybar"
];
2026-04-07 22:40:16 +03:00
}