322 lines
7.0 KiB
Nix
322 lines
7.0 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.waybar = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
settings = {
|
|
mainBar = {
|
|
layer = "top";
|
|
position = "top";
|
|
height = 30;
|
|
spacing = 4;
|
|
|
|
# Module layout
|
|
#
|
|
modules-left = [
|
|
"river/tags"
|
|
];
|
|
modules-center = [
|
|
#"river/mode"
|
|
# "river/layout"
|
|
"river/window"
|
|
];
|
|
modules-right = [
|
|
"pulseaudio"
|
|
"network#wifi"
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
"backlight"
|
|
"battery"
|
|
"clock"
|
|
"tray"
|
|
];
|
|
|
|
# Module configurations
|
|
|
|
"river/tags" = {
|
|
num-tags = 10;
|
|
tag-labels = [
|
|
"1"
|
|
"2"
|
|
"3"
|
|
"4"
|
|
"5"
|
|
"6"
|
|
"7"
|
|
"8"
|
|
"9"
|
|
"0"
|
|
];
|
|
set-tags = [
|
|
2147483649
|
|
2147483650
|
|
2147483652
|
|
2147483656
|
|
2147483664
|
|
2147483680
|
|
2147483712
|
|
2147483776
|
|
2147483904
|
|
2147483648
|
|
];
|
|
toggle-tags = [
|
|
1
|
|
2
|
|
4
|
|
8
|
|
16
|
|
32
|
|
64
|
|
128
|
|
256
|
|
];
|
|
hide-vacant = true;
|
|
};
|
|
|
|
"river/window" = {
|
|
format = "{}";
|
|
max-length = 20;
|
|
};
|
|
|
|
"tray" = {
|
|
icon-size = 21;
|
|
spacing = 10;
|
|
};
|
|
|
|
"clock" = {
|
|
timezone = "America/Denver";
|
|
tooltip-format = "<big>{calendar}</big>";
|
|
format-alt = "{:%Y-%m-%d}";
|
|
};
|
|
|
|
"cpu" = {
|
|
format = "{usage}% ";
|
|
tooltip = true;
|
|
};
|
|
|
|
"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" = {
|
|
format = "{percent}% {icon}";
|
|
format-icons = ["" "" "" "" "" "" "" "" ""];
|
|
};
|
|
|
|
"battery" = {
|
|
states = {
|
|
good = 95;
|
|
warning = 30;
|
|
critical = 15;
|
|
};
|
|
format = "{icon} {capacity}%";
|
|
format-full = "{icon} Full";
|
|
format-charging = "{icon} Charging {capacity}% {time}";
|
|
format-plugged = "{icon} Charge complete";
|
|
format-good = ">{icon} {capacity}%";
|
|
format-icons = ["" "" "" "" "" "" "" ""];
|
|
};
|
|
|
|
"network#wifi" = {
|
|
interface = "wlp*";
|
|
format-wifi = "{essid} ({signalStrength}%) ";
|
|
tooltip-format = "{ifname} via {gwaddr} ";
|
|
format-linked = "{ifname} (No IP) ";
|
|
format-disconnected = "No WiFi";
|
|
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
|
};
|
|
|
|
"pulseaudio" = {
|
|
format = "{volume}% {icon} {format_source}";
|
|
format-bluetooth = "{volume}% {icon} {format_source}";
|
|
format-bluetooth-muted = " {icon} {format_source}";
|
|
format-muted = " {format_source}";
|
|
format-source = "{volume}% ";
|
|
format-source-muted = "";
|
|
format-icons = {
|
|
headphone = "";
|
|
hands-free = "";
|
|
headset = "";
|
|
phone = "";
|
|
portable = "";
|
|
car = "";
|
|
default = ["" "" ""];
|
|
on-click = "pavucontrol";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
# Waybar styling inspired by the referenced swayhome configuration
|
|
style = ''
|
|
* {
|
|
font-family: "Hack Nerd Font Mono";
|
|
font-size: 13px;
|
|
}
|
|
window#waybar {
|
|
color: #545454;
|
|
background-color: #e391e2;
|
|
border-bottom: 3px solid #6e3a6d;
|
|
transition-property: background-color;
|
|
transition-duration: .5s;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
button {
|
|
box-shadow: inset 0 -3px transparent;
|
|
border: 1px #000000 solid;
|
|
border-radius: 0;
|
|
color:#545454;
|
|
|
|
}
|
|
button:hover {
|
|
background: inherit;
|
|
box-shadow: inset 0 -3px #ffffff;
|
|
}
|
|
|
|
#tags button {
|
|
padding: 0 15px;
|
|
background-color: transparent;
|
|
border: 2px solid #6e3a6d;
|
|
}
|
|
|
|
#tags button.occupied {
|
|
background: #545454;
|
|
color:#e391e2;
|
|
}
|
|
|
|
#tags button.focused {
|
|
background-color: #6e3a6d;
|
|
color: #e391e2;
|
|
border: 1px solid #e391e2;
|
|
border-bottom: 3px solid #e391e2;
|
|
}
|
|
|
|
#tags button.urgent {
|
|
background-color: #f38ba8;
|
|
}
|
|
|
|
|
|
#backlight,
|
|
#battery,
|
|
#clock,
|
|
#cpu,
|
|
#memory,
|
|
#mode,
|
|
#network,
|
|
#pulseaudio,
|
|
#temperature,
|
|
#tray,
|
|
#power-profiles-daemon {
|
|
padding: 0 8px;
|
|
color:#545454;
|
|
}
|
|
|
|
#window,
|
|
#workspaces {
|
|
margin: 0 8px;
|
|
}
|
|
|
|
#backlight {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #cba6f7;
|
|
}
|
|
|
|
#battery {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #a6e3a1;
|
|
}
|
|
|
|
#battery.critical.discharging {
|
|
background-color: #f38ba8;
|
|
animation: blink 1s infinite;
|
|
}
|
|
|
|
#battery.warning.discharging {
|
|
background-color: #f9e2af;
|
|
animation: blink 1s infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
#clock {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #a6e3a1;
|
|
}
|
|
|
|
#cpu {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #cba6f7;
|
|
}
|
|
|
|
#memory {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #f9e2af;
|
|
}
|
|
|
|
#mode {
|
|
color: #ffffff;
|
|
background-color: #6e3a6d;
|
|
border-bottom: 3px solid #ffffff;
|
|
}
|
|
|
|
#network {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #a6e3a1;
|
|
}
|
|
|
|
#network.disconnected {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #f38ba8;
|
|
}
|
|
|
|
#pulseaudio {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #a6e3a1;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #f38ba8;
|
|
}
|
|
|
|
#temperature {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #a6e3a1;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #f38ba8;
|
|
}
|
|
|
|
#tray {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #6e3a6d;
|
|
}
|
|
#power-profiles-daemon {
|
|
background-color: transparent;
|
|
border-bottom: 3px solid #94e2d5;
|
|
}
|
|
'';
|
|
};
|
|
}
|