mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
feat: add waybar
This commit is contained in:
parent
e042873ced
commit
ae0d590f53
4 changed files with 271 additions and 1 deletions
66
home/toast/programs/waybar/default.nix
Normal file
66
home/toast/programs/waybar/default.nix
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
style = builtins.readFile ./style.css;
|
||||
settings = [{
|
||||
position = "top";
|
||||
height = 5;
|
||||
output = "HDMI-A-1";
|
||||
modules-left = [ ];
|
||||
modules-center = [ ];
|
||||
modules-right = [
|
||||
"pulseaudio"
|
||||
"network"
|
||||
"cpu"
|
||||
"memory"
|
||||
"systemd-failed-units"
|
||||
"clock"
|
||||
"tray"
|
||||
];
|
||||
|
||||
tray.spacing = 10;
|
||||
|
||||
clock = {
|
||||
format = "{:%I:%M }";
|
||||
format-alt = "{:%Y-%m-%d}";
|
||||
tooltip = false;
|
||||
};
|
||||
|
||||
cpu = {
|
||||
format = "{usage}% ";
|
||||
on-click = "kitty btop";
|
||||
};
|
||||
|
||||
memory = {
|
||||
format = "{}% ";
|
||||
on-click = "kitty btop";
|
||||
};
|
||||
|
||||
network = {
|
||||
format-wifi = "{essid} ({signalStrength}%) ";
|
||||
format-ethernet = "{ifname}: {ipaddr}/{cidr} ";
|
||||
format-linked = "{ifname} (No IP) ";
|
||||
format-disconnected = "Disconnected ";
|
||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
||||
};
|
||||
|
||||
pulseaudio = {
|
||||
format = "{volume}% {format_source}";
|
||||
format-bluetooth = "{volume}% {format_source}";
|
||||
format-bluetooth-muted = " {format_source}";
|
||||
format-muted = " {format_source}";
|
||||
format-source = "{volume}% ";
|
||||
format-source-muted = "";
|
||||
on-click = "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
||||
};
|
||||
|
||||
systemd-failed-units = {
|
||||
hide-on-ok = false;
|
||||
format = "✗ {nr_failed}";
|
||||
format-ok = "✓";
|
||||
system = true;
|
||||
user = false;
|
||||
};
|
||||
}];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue