2021-06-29 21:02:43 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.programs.xmobar;
|
|
|
|
in {
|
|
|
|
options.programs.xmobar = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "Xmobar, a minimalistic status bar";
|
2021-06-29 21:02:43 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
default = pkgs.haskellPackages.xmobar;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.haskellPackages.xmobar";
|
2021-06-29 21:02:43 +02:00
|
|
|
type = types.package;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Package providing the {command}`xmobar` binary.
|
2021-06-29 21:02:43 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
default = "";
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-06-29 21:02:43 +02:00
|
|
|
Config
|
|
|
|
{ font = "Fira Code"
|
|
|
|
, borderColor = "#d0d0d0"
|
|
|
|
, border = FullB
|
|
|
|
, borderWidth = 3
|
|
|
|
, bgColor = "#222"
|
|
|
|
, fgColor = "grey"
|
|
|
|
, position = TopSize C 99 30
|
|
|
|
, commands =
|
|
|
|
[ Run Cpu ["-t", "cpu: <fc=#4eb4fa><bar> <total>%</fc>"] 10
|
|
|
|
, Run Network "enp3s0" ["-S", "True", "-t", "eth: <fc=#4eb4fa><rx></fc>/<fc=#4eb4fa><tx></fc>"] 10
|
|
|
|
, Run Memory ["-t","mem: <fc=#4eb4fa><usedbar> <usedratio>%</fc>"] 10
|
|
|
|
, Run Date "date: <fc=#4eb4fa>%a %d %b %Y %H:%M:%S </fc>" "date" 10
|
|
|
|
, Run StdinReader
|
|
|
|
]
|
|
|
|
, sepChar = "%"
|
|
|
|
, alignSep = "}{"
|
|
|
|
, template = " %StdinReader% | %cpu% | %memory% | %enp3s0% }{%date% "
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
type = types.lines;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-06-29 21:02:43 +02:00
|
|
|
Extra configuration lines to add to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/xmobar/.xmobarrc`.
|
2021-06-29 21:02:43 +02:00
|
|
|
See
|
2023-07-01 01:30:13 +02:00
|
|
|
<https://xmobar.org/#configuration>
|
2021-06-29 21:02:43 +02:00
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
xdg.configFile."xmobar/.xmobarrc".text = cfg.extraConfig;
|
|
|
|
};
|
|
|
|
|
2021-12-25 19:34:31 +01:00
|
|
|
meta.maintainers = [ hm.maintainers.t4ccer ];
|
2021-06-29 21:02:43 +02:00
|
|
|
}
|