From bdee2270e6c65b76e73bd6507194ec055e1174bb Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 20 Jun 2022 11:34:05 +0200 Subject: [PATCH] feat: configure i3 --- home-mandlm.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/home-mandlm.nix b/home-mandlm.nix index e18d0ea..0ae1e7a 100644 --- a/home-mandlm.nix +++ b/home-mandlm.nix @@ -82,6 +82,10 @@ }; }; + i3status-rust = { + enable = true; + }; + home-manager.enable = true; }; @@ -89,10 +93,33 @@ enable = true; config = { modifier = "Mod4"; + terminal = "${pkgs.kitty}/bin/kitty"; + fonts = { names = ["DejaVu Sans Mono" ]; size = 12.0; }; + + window = { + titlebar = false; + border = 0; + }; + + floating = { + titlebar = false; + border = 0; + }; + + bars = [{ + mode = "hide"; + position = "top"; + statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ~/.config/i3status-rust/config-default.toml"; + + fonts = { + names = ["DejaVu Sans Mono" ]; + size = 12.0; + }; + }]; }; }; }