354 lines
9 KiB
Nix
354 lines
9 KiB
Nix
{
|
|
colors,
|
|
font,
|
|
...
|
|
}: {
|
|
programs.waybar = {
|
|
enable = true;
|
|
settings = {
|
|
mainBar = {
|
|
"layer" = "top";
|
|
"position" = "bottom";
|
|
"output" = ["eDP-1" "DP-3"];
|
|
"height" = 32;
|
|
"modules-left" = ["clock" "sway/window"];
|
|
"modules-center" = ["sway/workspaces"];
|
|
"modules-right" = [
|
|
"mpris"
|
|
"idle_inhibitor"
|
|
"bluetooth"
|
|
# "wireplumber",
|
|
"pulseaudio"
|
|
# "network",
|
|
"cpu"
|
|
"memory"
|
|
# "temperature",
|
|
"backlight"
|
|
"battery"
|
|
"tray"
|
|
];
|
|
"bluetooth" = {
|
|
"format" = "<span</span>";
|
|
"format-connected" = "<span></span>";
|
|
"format-connected-battery" = "<span></span>";
|
|
# "format-device-preference" = [ "device1", "device2" ], # preference list deciding the displayed devic;
|
|
"tooltip-format" = "{controller_alias}@{controller_address} ({num_connections} connected)";
|
|
"tooltip-format-connected" = "{controller_alias}@{controller_address} ({num_connections} connected)\n{device_enumerate}";
|
|
"tooltip-format-enumerate-connected" = "{device_alias}@{device_address}";
|
|
"tooltip-format-enumerate-connected-battery" = "{device_alias}@{device_address} ( {device_battery_percentage}%)";
|
|
};
|
|
# "wireplumber" = ;
|
|
# "format" = "{volume}% {icon}";
|
|
# "format-muted" = "";
|
|
# "on-click" = "helvum;
|
|
# },
|
|
"sway/workspaces" = {
|
|
"disable-scroll" = false;
|
|
"persistent_workspaces" = {
|
|
};
|
|
"all-outputs" = true;
|
|
"format" = "{name}";
|
|
};
|
|
"idle_inhibitor" = {
|
|
"format" = "{icon}";
|
|
"format-icons" = {
|
|
"activated" = "";
|
|
"deactivated" = "";
|
|
};
|
|
};
|
|
"tray" = {
|
|
"icon-size" = 24;
|
|
"spacing" = 4;
|
|
};
|
|
"clock" = {
|
|
"interval" = 1;
|
|
"format" = "{:%a %b %d %H:%M:%S}";
|
|
};
|
|
"cpu" = {
|
|
"format" = "{usage} <span></span>";
|
|
"tooltip" = true;
|
|
"interval" = 3;
|
|
};
|
|
"memory" = {
|
|
"format" = "{} ";
|
|
};
|
|
"temperature" = {
|
|
# "thermal-zone" = 2;
|
|
# "hwmon-path" = "/sys/class/hwmon/hwmon2/temp1_input";
|
|
"critical-threshold" = 80;
|
|
# "format-critical" = "{temperatureC}°C {icon}";
|
|
"format" = "{temperatureC}°C {icon}";
|
|
"format-icons" = ["" "" ""];
|
|
};
|
|
"backlight" = {
|
|
# "device" = "acpi_video1";
|
|
"format" = "{percent}% {icon}";
|
|
"format-icons" = ["" ""];
|
|
};
|
|
"battery" = {
|
|
"states" = {
|
|
# "good" = 95;
|
|
"warning" = 30;
|
|
"critical" = 1;
|
|
};
|
|
"format" = "{capacity}% {icon}";
|
|
"format-charging" = "{capacity}% ";
|
|
"format-plugged" = "{capacity}% ";
|
|
"format-alt" = "{time} {icon}";
|
|
"format-good" = ""; # An empty format will hide the modul;
|
|
"format-full" = "";
|
|
"format-icons" = ["" "" "" "" ""];
|
|
};
|
|
"network" = {
|
|
"format-wifi" = "{essid} ({signalStrength}%) ";
|
|
"format-ethernet" = "{ifname}: {ipaddr}/{cidr} ";
|
|
"format-linked" = "{ifname} (No IP) ";
|
|
"format-disconnected" = "Disconnected ⚠";
|
|
"format-alt" = "{ifname}: {ipaddr}/{cidr}";
|
|
};
|
|
"mpris" = {
|
|
"format" = "{title} by {artist}";
|
|
};
|
|
"pulseaudio" = {
|
|
# "scroll-step" = 1, # %, can be a floa;
|
|
"format" = "{volume} {icon} <span>{format_source}</span>";
|
|
#"format" = "{volume}% {icon} {format_source}";
|
|
#"format-bluetooth" = "{volume}% {icon} {format_source}";
|
|
#"format-bluetooth-muted" = " {icon} {format_source}";
|
|
#"format-muted" = " {format_source}";
|
|
"format-muted" = " {format_source}";
|
|
"format-source" = "";
|
|
"format-source-muted" = "";
|
|
"format-icons" = {
|
|
"headphones" = "";
|
|
"handsfree" = "";
|
|
"headset" = "";
|
|
"phone" = "";
|
|
"portable" = "";
|
|
"car" = "";
|
|
"default" = ["" "" ""];
|
|
};
|
|
# TODO: toggle mute?
|
|
"on-click" = "pavucontrol";
|
|
};
|
|
};
|
|
};
|
|
style = let
|
|
border-width = "0px";
|
|
in
|
|
with colors.withHashPrefix; ''
|
|
* {
|
|
border-radius: 0;
|
|
font-family: "${font.name}", "Symbols Nerd Font Mono", sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
window#waybar {
|
|
min-height: 32px;
|
|
background-color: ${bg};
|
|
color: ${text};
|
|
border-top: solid ${blue} ${border-width};
|
|
transition: none;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
/* opacity: 0.2; */
|
|
}
|
|
|
|
window#waybar.empty {
|
|
/* opacity: 0.2; */
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 0.75em;
|
|
background-color: transparent;
|
|
border-top: solid ${primary} ${border-width};
|
|
transition: none;
|
|
color: ${fgdim};
|
|
background-color: ${bg};
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: ${text};
|
|
background-color: ${bg};
|
|
}
|
|
|
|
#workspaces button.visible {
|
|
color: ${fgdim};
|
|
background-color: ${bg};
|
|
}
|
|
|
|
/* A workspace that is persistent but has windows in it */
|
|
#workspaces button.persistent {
|
|
color: ${fgdim};
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: ${bg};
|
|
background-color: ${primary};
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: ${urgent};
|
|
color: ${bg};
|
|
border-top: solid ${urgent} ${border-width};
|
|
}
|
|
|
|
#mode {
|
|
background-color: transparent;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#custom-media,
|
|
#tray,
|
|
#mode,
|
|
#idle_inhibitor,
|
|
#mpris,
|
|
#window,
|
|
#mpd {
|
|
margin-top: 1px;
|
|
padding: 0 0.75em;
|
|
background-color: inherit;
|
|
color: ${text};
|
|
}
|
|
|
|
#clock {}
|
|
|
|
#battery {
|
|
/* background-color: #ffffff; */
|
|
/* color: #000000; */
|
|
}
|
|
|
|
#battery.charging {
|
|
/* color: #ffffff; */
|
|
/* background-color: #26A65B; */
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
background-color: ${red};
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#bluetooth,
|
|
#bluetooth.connected-battery,
|
|
#bluetooth.connected.battery,
|
|
#bluetooth.connected {
|
|
color: ${text};
|
|
}
|
|
|
|
label:focus {
|
|
/* background-color: #000000; */
|
|
}
|
|
|
|
#cpu {
|
|
/* background-color: #2ecc71; */
|
|
/* color: #000000; */
|
|
}
|
|
|
|
#memory {
|
|
/* background-color: #9b59b6; */
|
|
}
|
|
|
|
#backlight {
|
|
/* background-color: #90b1b1; */
|
|
}
|
|
|
|
#network {
|
|
/* background-color: #2980b9; */
|
|
}
|
|
|
|
#network.disconnected {
|
|
/* background-color: #f53c3c; */
|
|
}
|
|
|
|
#pulseaudio {
|
|
color: ${red};
|
|
/* background-color: #f1c40f; */
|
|
/* color: #000000; */
|
|
}
|
|
|
|
#pulseaudio.source-muted {
|
|
/* background-color: #90b1b1; */
|
|
color: ${text};
|
|
}
|
|
|
|
#custom-media {
|
|
/* background-color: #66cc99; */
|
|
/* color: #2a5c45; */
|
|
/* min-width: 100px; */
|
|
}
|
|
|
|
#custom-media.custom-spotify {
|
|
/* background-color: #66cc99; */
|
|
}
|
|
|
|
#custom-media.custom-vlc {
|
|
/* background-color: #ffa000; */
|
|
}
|
|
|
|
#temperature {
|
|
/* background-color: #f0932b; */
|
|
}
|
|
|
|
#temperature.critical {
|
|
/* background-color: #eb4d4b; */
|
|
}
|
|
|
|
#tray {
|
|
/* background-color: #2980b9; */
|
|
}
|
|
|
|
#idle_inhibitor {
|
|
/* background-color: #2d3436; */
|
|
}
|
|
|
|
#idle_inhibitor.activated {
|
|
/* background-color: #ecf0f1; */
|
|
/* color: #2d3436; */
|
|
}
|
|
|
|
#mpd {
|
|
/* background-color: #66cc99; */
|
|
/* color: #2a5c45; */
|
|
}
|
|
|
|
#mpd.disconnected {
|
|
/* background-color: #f53c3c; */
|
|
}
|
|
|
|
#mpd.stopped {
|
|
/* background-color: #90b1b1; */
|
|
}
|
|
|
|
#mpd.paused {
|
|
/* background-color: #51a37a; */
|
|
}
|
|
'';
|
|
systemd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|