home: wm: add i3bar
This commit is contained in:
parent
fe9f468e06
commit
1da8177ea2
|
@ -2,6 +2,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./i3.nix
|
./i3.nix
|
||||||
|
./i3bar.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
options.my.home.wm = with lib; {
|
options.my.home.wm = with lib; {
|
||||||
|
|
52
home/wm/i3bar.nix
Normal file
52
home/wm/i3bar.nix
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
isEnabled = config.my.home.wm.windowManager == "i3";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = lib.mkIf isEnabled {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
alsaUtils # Used by `sound` block
|
||||||
|
lm_sensors # Used by `temperature` block
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.i3status-rust = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
bars = {
|
||||||
|
top = {
|
||||||
|
blocks = [
|
||||||
|
{
|
||||||
|
block = "music";
|
||||||
|
buttons = [ "prev" "play" "next" ];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "cpu";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "disk_space";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "net";
|
||||||
|
format = "{ssid} {ip} {signal_strength}";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "battery";
|
||||||
|
format = "{percentage}% ({time})";
|
||||||
|
full_format = "{percentage}%";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "temperature";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "sound";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "time";
|
||||||
|
format = "%F %T";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue