diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
| commit | a1f7f43c95c049628e826856ec589b339cd4f5db (patch) | |
| tree | a0f5bb10fc36f02ad6dbaebf1232ca2548f9ccfa /home/config/i3/bar/default.nix | |
initial commit
Diffstat (limited to 'home/config/i3/bar/default.nix')
| -rw-r--r-- | home/config/i3/bar/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/home/config/i3/bar/default.nix b/home/config/i3/bar/default.nix new file mode 100644 index 0000000..e43095f --- /dev/null +++ b/home/config/i3/bar/default.nix @@ -0,0 +1,18 @@ +{ pkgs, ... }: + +let + statusPackage = + pkgs.personal.barista.override { i3statusGo = ./i3status.go; }; +in { + xsession.windowManager.i3.config.bars = [{ + statusCommand = "${statusPackage}/bin/i3status"; + fonts = { + names = [ "roboto" ]; + size = 11.0; + }; + colors.background = "#111111"; + }]; + + # (Miscellaneous) Tray icons + services.blueman-applet.enable = true; +} |
