flake/home/applications/i3status-rust/default.nix

19 lines
364 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
2024-01-05 10:32:58 +00:00
programs.i3status-rust = {
enable = true;
2024-07-21 08:18:47 +00:00
bars.default = {
icons = "material-nf";
blocks = [
{ block = "backlight"; }
{ block = "sound"; }
{ block = "battery"; }
{
block = "time";
format = " $icon $timestamp.datetime(f:'%F %r') ";
interval = 1;
}
2024-07-21 08:18:47 +00:00
];
2024-01-05 10:32:58 +00:00
};
};
2023-12-08 15:44:35 +00:00
}