add the other headphones

This commit is contained in:
Cyryl Płotnicki 2021-04-09 22:57:23 +01:00
parent a6ae96fe4c
commit f8787d0aef
2 changed files with 8 additions and 2 deletions

View file

@ -56,6 +56,12 @@ format_disconnected = ""
[[block]] [[block]]
block = "bluetooth" block = "bluetooth"
mac = "28:11:A5:E1:3C:57" mac = "28:11:A5:E1:3C:57"
hide_disconnected = true
[[block]]
block = "bluetooth"
mac = "AC:9B:0A:12:75:DB"
hide_disconnected = true
[[block]] [[block]]
block = "battery" block = "battery"

View file

@ -5,7 +5,7 @@ in
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
font-awesome-ttf font-awesome-ttf
i3status-rust unstable.i3status-rust
]; ];
xsession.windowManager.i3 = { xsession.windowManager.i3 = {
@ -32,7 +32,7 @@ in
position = "top"; position = "top";
colors.background = "#002b36"; colors.background = "#002b36";
fonts = [ "Fira Code Nerd Font 10" ]; fonts = [ "Fira Code Nerd Font 10" ];
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ${config.xdg.configHome}/i3/status.toml"; statusCommand = "${pkgs.unstable.i3status-rust}/bin/i3status-rs ${config.xdg.configHome}/i3/status.toml";
trayOutput = "primary"; trayOutput = "primary";
} }
]; ];