Fix i3status-rs

This commit is contained in:
2021-12-04 15:05:31 +00:00
parent bf4d1d7ece
commit 9517872a86
2 changed files with 38 additions and 1 deletions

View File

@@ -3,5 +3,42 @@
{
programs.i3status-rust = {
enable = true;
bars = {
main = {
theme = "nord-dark";
icons = "awesome";
blocks = [
{
block = "time";
}
{
block = "battery";
allow_missing = true;
hide_missing = true;
}
{
block = "networkmanager";
on_click = "alacritty -e nmtui";
primary_only = true;
ap_format = "{ssid}";
device_format = "{icon}{ap}";
}
{
block = "keyboard_layout";
}
{
block = "notify";
}
{
block = "music";
player = "spotify";
buttons = [ "prev" "play" "next" ];
}
{
block = "sound";
}
];
};
};
};
}