Switch to i3status-rs

This commit is contained in:
2021-12-01 16:54:56 +00:00
parent d26dfec36a
commit baf33aea26
3 changed files with 17 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
../progs/alacritty ../progs/alacritty
../progs/i3 ../progs/i3
../progs/neovim ../progs/neovim
../progs/polybar ../progs/i3status-rust
]; ];
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.

View File

@@ -9,7 +9,15 @@ in {
windowManager.i3 = { windowManager.i3 = {
enable = true; enable = true;
config = { config = {
bars = [ ]; bars = [
{
fonts = {
size = 11.0;
};
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs";
position = "top";
}
];
defaultWorkspace = "workspace number 1"; defaultWorkspace = "workspace number 1";

View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
programs.i3status-rust = {
enable = true;
};
}