nixos-config/home/x/i3bar.nix

90 lines
2.4 KiB
Nix
Raw Normal View History

2021-04-19 14:58:52 +02:00
{ config, lib, pkgs, ... }:
let
isEnabled = config.my.home.x.enable;
in
{
2021-04-19 22:54:20 +02:00
2021-04-19 14:58:52 +02:00
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
2021-04-19 22:54:20 +02:00
iw # Used by `net` block
2021-04-19 14:58:52 +02:00
lm_sensors # Used by `temperature` block
font-awesome
2021-04-19 14:58:52 +02:00
];
programs.i3status-rust = {
enable = true;
bars = {
top = {
2021-04-19 19:27:46 +02:00
theme = "solarized-light";
2021-04-19 22:54:20 +02:00
icons = "awesome5";
blocks = [
{
block = "disk_space";
path = "/";
alias = "/";
info_type = "available";
unit = "GB";
interval = 60;
warning = 20.0;
alert = 10.0;
}
2021-04-21 01:47:11 +02:00
# TODO: update to new format when i3status-rust updates to v0.20:
# https://github.com/greshake/i3status-rust/blob/4d55b1d94ee09cbdefd805841fb54a2a4a0663a4/doc/blocks.md#available-format-keys-11
{
block = "memory";
display_type = "memory";
format_mem = "{Mug}/{MTg}GB";
warning_mem = 70.0;
critical_mem = 90.0;
# don't show swap
clickable = false;
}
2021-04-19 22:54:20 +02:00
{
block = "cpu";
interval = 1;
2021-04-20 01:50:10 +02:00
format = "{barchart}";
2021-04-19 22:54:20 +02:00
}
{
block = "temperature";
collapsed = false;
interval = 10;
format = "{max}°";
# FIXME: specific to my AMD Ryzen CPU. Make this depend on
# hostname or something else
chip = "k10temp-pci-*";
inputs = [ "Tccd1" ];
}
{
block = "networkmanager";
primary_only = true;
}
{
block = "bluetooth";
mac = config.my.secrets.bluetooth-mouse-mac-address;
hide_disconnected = true;
# TODO: use format when i3status-rust updates to v0.20
# format = "{percentage}";
}
2021-04-19 22:54:20 +02:00
{
block = "sound";
driver = "pulseaudio";
}
# {
# block = "notify";
# }
{
block = "time";
interval = 5;
format = "%a %d/%m %T";
locale = "fr_FR";
timezone = "Europe/Paris";
}
];
2021-04-19 14:58:52 +02:00
};
};
};
};
}