nixos-config/modules/workspace/i3blocks/default.nix

55 lines
1.8 KiB
Nix
Raw Normal View History

2020-02-17 17:00:59 +04:00
{ pkgs, config, lib, ... }:
with import ../../../support.nix { inherit pkgs config lib; };
with lib;
let scripts = import ./scripts pkgs config;
in {
2020-06-13 00:12:36 +04:00
home-manager.users.balsoft.wayland.windowManager.sway.config.bars = [{
id = "top";
colors = let
thm = config.themes.colors;
default = {
background = thm.bg;
border = thm.bg;
};
in {
background = thm.bg;
statusline = thm.fg;
separator = thm.alt;
2020-06-15 11:07:28 +04:00
focusedWorkspace = default // { text = thm.red; };
2020-06-13 00:12:36 +04:00
activeWorkspace = default // { text = thm.green; };
2020-06-15 11:07:28 +04:00
inactiveWorkspace = default // { text = thm.fg; };
2020-06-13 00:12:36 +04:00
urgentWorkspace = default // { text = thm.orange; };
bindingMode = default // { text = thm.yellow; };
};
statusCommand = "${pkgs.i3blocks}/bin/i3blocks";
fonts = [ "IBM Plex Mono 11" "Material Icons 11" "Roboto Mono 11" ];
mode = "hide";
position = "bottom";
workspaceNumbers = false;
}];
2020-02-17 17:00:59 +04:00
home-manager.users.balsoft.xdg.configFile."i3blocks/config".text = let
scr = x: {
name = x;
command = scripts.${x};
};
scrint = x: interval: (scr x) // { inherit interval; };
in ''
interval=60
markup=pango
2020-04-29 03:18:36 +04:00
'' + genIniOrdered (optional (!isNull config.secrets.mail) (scr "email")
2020-07-27 01:16:19 +04:00
++ [ (scrint "weather" 600) (scr "calendar") (scr "emacs") (scr "nixos") ]
2020-04-29 03:18:36 +04:00
++ optional (!isNull config.secrets.wage) (scrint "youtrack-wage" 3600)
2020-07-27 01:16:19 +04:00
++ [ (scrint "music" 3) (scrint "sound" 1) ] ++ [
2020-04-29 03:18:36 +04:00
(scrint "cpu" 5)
(scrint "freq" 10)
(scr "temperature")
(scrint "free" 10)
] ++ optionals config.deviceSpecific.isLaptop [
(scr "battery")
(scrint "brightness" 5)
]
++ optional (config.deviceSpecific.devInfo ? bigScreen) (scrint "network" 1)
2020-07-27 01:16:19 +04:00
++ [ (scrint "bluetooth" 3) (scrint "connections" 3) (scr "df") (scr "date") (scrint "time" 1) ]);
2020-02-17 17:00:59 +04:00
}