summaryrefslogtreecommitdiff
path: root/home/config/i3/bar/default.nix
blob: e43095fd3dda0ea906dbdf925cbe9ab111e5d9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}