2022-03-21 23:52:57 +01:00
|
|
|
{ cfg, config, lib, moduleName }:
|
2019-09-04 04:30:44 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
criteriaStr = criteria:
|
2021-08-22 02:41:06 +02:00
|
|
|
let
|
|
|
|
toCriteria = k: v:
|
|
|
|
if builtins.isBool v then
|
|
|
|
(if v then "${k}" else "")
|
|
|
|
else
|
|
|
|
''${k}="${v}"'';
|
|
|
|
in "[${concatStringsSep " " (mapAttrsToList toCriteria criteria)}]";
|
2019-09-04 04:30:44 +02:00
|
|
|
|
2021-05-17 06:54:53 +02:00
|
|
|
keybindingDefaultWorkspace = filterAttrs (n: v:
|
|
|
|
cfg.config.defaultWorkspace != null && v == cfg.config.defaultWorkspace)
|
|
|
|
cfg.config.keybindings;
|
|
|
|
|
|
|
|
keybindingsRest = filterAttrs (n: v:
|
|
|
|
cfg.config.defaultWorkspace == null || v != cfg.config.defaultWorkspace)
|
|
|
|
cfg.config.keybindings;
|
|
|
|
|
2022-03-21 23:52:57 +01:00
|
|
|
keybindingsStr = { keybindings, bindsymArgs ? "", indent ? "" }:
|
2019-09-04 04:30:44 +02:00
|
|
|
concatStringsSep "\n" (mapAttrsToList (keycomb: action:
|
2022-03-21 23:52:57 +01:00
|
|
|
optionalString (action != null) "${indent}bindsym ${
|
2020-05-30 13:58:05 +02:00
|
|
|
lib.optionalString (bindsymArgs != "") "${bindsymArgs} "
|
2020-04-13 15:53:22 +02:00
|
|
|
}${keycomb} ${action}") keybindings);
|
2019-09-04 04:30:44 +02:00
|
|
|
|
|
|
|
keycodebindingsStr = keycodebindings:
|
|
|
|
concatStringsSep "\n" (mapAttrsToList (keycomb: action:
|
|
|
|
optionalString (action != null) "bindcode ${keycomb} ${action}")
|
|
|
|
keycodebindings);
|
|
|
|
|
|
|
|
colorSetStr = c:
|
|
|
|
concatStringsSep " " [
|
|
|
|
c.border
|
|
|
|
c.background
|
|
|
|
c.text
|
|
|
|
c.indicator
|
|
|
|
c.childBorder
|
|
|
|
];
|
|
|
|
barColorSetStr = c: concatStringsSep " " [ c.border c.background c.text ];
|
|
|
|
|
2021-07-15 15:09:54 +02:00
|
|
|
modeStr = bindkeysToCode: name: keybindings: ''
|
2019-09-04 04:30:44 +02:00
|
|
|
mode "${name}" {
|
2021-07-15 15:09:54 +02:00
|
|
|
${keybindingsStr {
|
|
|
|
inherit keybindings;
|
|
|
|
bindsymArgs = lib.optionalString bindkeysToCode "--to-code";
|
2022-03-21 23:52:57 +01:00
|
|
|
indent = " ";
|
2021-07-15 15:09:54 +02:00
|
|
|
}}
|
2019-09-04 04:30:44 +02:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
|
|
|
assignStr = workspace: criteria:
|
|
|
|
concatStringsSep "\n"
|
|
|
|
(map (c: "assign ${criteriaStr c} ${workspace}") criteria);
|
|
|
|
|
2021-05-04 05:54:35 +02:00
|
|
|
fontConfigStr = let
|
|
|
|
toFontStr = { names, style ? "", size ? "" }:
|
2021-12-27 09:03:18 +01:00
|
|
|
optionalString (names != [ ]) concatStringsSep " "
|
|
|
|
(remove "" [ "font" "pango:${concatStringsSep ", " names}" style size ]);
|
2021-05-04 05:54:35 +02:00
|
|
|
in fontCfg:
|
|
|
|
if isList fontCfg then
|
|
|
|
toFontStr { names = fontCfg; }
|
|
|
|
else
|
|
|
|
toFontStr {
|
|
|
|
inherit (fontCfg) names style;
|
|
|
|
size = toString fontCfg.size;
|
|
|
|
};
|
|
|
|
|
2019-09-04 04:30:44 +02:00
|
|
|
barStr = { id, fonts, mode, hiddenState, position, workspaceButtons
|
2023-04-17 01:34:29 +02:00
|
|
|
, workspaceNumbers, command, statusCommand, colors, trayOutput, trayPadding
|
|
|
|
, extraConfig, ... }:
|
2020-07-13 13:31:55 +02:00
|
|
|
let colorsNotNull = lib.filterAttrs (n: v: v != null) colors != { };
|
2023-05-11 14:04:29 +02:00
|
|
|
in concatMapStrings (x: x + "\n") (indent (lists.subtractLists [ "" null ]
|
|
|
|
(flatten [
|
|
|
|
"bar {"
|
|
|
|
(optionalString (id != null) "id ${id}")
|
|
|
|
(fontConfigStr fonts)
|
|
|
|
(optionalString (mode != null) "mode ${mode}")
|
|
|
|
(optionalString (hiddenState != null) "hidden_state ${hiddenState}")
|
|
|
|
(optionalString (position != null) "position ${position}")
|
|
|
|
(optionalString (statusCommand != null)
|
|
|
|
"status_command ${statusCommand}")
|
|
|
|
"${moduleName}bar_command ${command}"
|
|
|
|
(optionalString (workspaceButtons != null)
|
|
|
|
"workspace_buttons ${lib.hm.booleans.yesNo workspaceButtons}")
|
|
|
|
(optionalString (workspaceNumbers != null) "strip_workspace_numbers ${
|
|
|
|
lib.hm.booleans.yesNo (!workspaceNumbers)
|
|
|
|
}")
|
|
|
|
(optionalString (trayOutput != null) "tray_output ${trayOutput}")
|
|
|
|
(optionalString (trayPadding != null)
|
|
|
|
"tray_padding ${toString trayPadding}")
|
|
|
|
(optionals colorsNotNull (indent (lists.subtractLists [ "" null ] [
|
|
|
|
"colors {"
|
|
|
|
(optionalString (colors.background != null)
|
|
|
|
"background ${colors.background}")
|
|
|
|
(optionalString (colors.statusline != null)
|
|
|
|
"statusline ${colors.statusline}")
|
|
|
|
(optionalString (colors.separator != null)
|
|
|
|
"separator ${colors.separator}")
|
|
|
|
(optionalString (colors.focusedBackground != null)
|
|
|
|
"focused_background ${colors.focusedBackground}")
|
|
|
|
(optionalString (colors.focusedStatusline != null)
|
|
|
|
"focused_statusline ${colors.focusedStatusline}")
|
|
|
|
(optionalString (colors.focusedSeparator != null)
|
|
|
|
"focused_separator ${colors.focusedSeparator}")
|
|
|
|
(optionalString (colors.focusedWorkspace != null)
|
|
|
|
"focused_workspace ${barColorSetStr colors.focusedWorkspace}")
|
|
|
|
(optionalString (colors.activeWorkspace != null)
|
|
|
|
"active_workspace ${barColorSetStr colors.activeWorkspace}")
|
|
|
|
(optionalString (colors.inactiveWorkspace != null)
|
|
|
|
"inactive_workspace ${barColorSetStr colors.inactiveWorkspace}")
|
|
|
|
(optionalString (colors.urgentWorkspace != null)
|
|
|
|
"urgent_workspace ${barColorSetStr colors.urgentWorkspace}")
|
|
|
|
(optionalString (colors.bindingMode != null)
|
|
|
|
"binding_mode ${barColorSetStr colors.bindingMode}")
|
|
|
|
"}"
|
|
|
|
]) { }))
|
|
|
|
extraConfig
|
|
|
|
"}"
|
|
|
|
])) { });
|
2019-09-04 04:30:44 +02:00
|
|
|
|
2022-03-21 23:52:57 +01:00
|
|
|
gapsStr = with cfg.config.gaps;
|
|
|
|
concatStringsSep "\n" (lists.subtractLists [ "" null ] [
|
|
|
|
(optionalString (inner != null) "gaps inner ${toString inner}")
|
|
|
|
(optionalString (outer != null) "gaps outer ${toString outer}")
|
|
|
|
(optionalString (horizontal != null)
|
|
|
|
"gaps horizontal ${toString horizontal}")
|
|
|
|
(optionalString (vertical != null) "gaps vertical ${toString vertical}")
|
|
|
|
(optionalString (top != null) "gaps top ${toString top}")
|
|
|
|
(optionalString (bottom != null) "gaps bottom ${toString bottom}")
|
|
|
|
(optionalString (left != null) "gaps left ${toString left}")
|
|
|
|
(optionalString (right != null) "gaps right ${toString right}")
|
|
|
|
(optionalString smartGaps "smart_gaps on")
|
|
|
|
(optionalString (smartBorders != "off") "smart_borders ${smartBorders}")
|
|
|
|
]);
|
2019-09-04 04:30:44 +02:00
|
|
|
|
2021-04-28 21:52:31 +02:00
|
|
|
windowBorderString = window: floating:
|
|
|
|
let
|
|
|
|
titlebarString = { titlebar, border, ... }:
|
|
|
|
"${if titlebar then "normal" else "pixel"} ${toString border}";
|
|
|
|
in concatStringsSep "\n" [
|
|
|
|
"default_border ${titlebarString window}"
|
|
|
|
"default_floating_border ${titlebarString floating}"
|
|
|
|
];
|
|
|
|
|
2019-09-04 04:30:44 +02:00
|
|
|
floatingCriteriaStr = criteria:
|
|
|
|
"for_window ${criteriaStr criteria} floating enable";
|
|
|
|
windowCommandsStr = { command, criteria, ... }:
|
|
|
|
"for_window ${criteriaStr criteria} ${command}";
|
2021-06-03 02:03:20 +02:00
|
|
|
workspaceOutputStr = item:
|
2023-07-14 21:25:55 +02:00
|
|
|
let outputs = concatMapStringsSep " " strings.escapeNixString item.output;
|
|
|
|
in ''workspace "${item.workspace}" output ${outputs}'';
|
2022-03-21 23:52:57 +01:00
|
|
|
|
|
|
|
indent = list:
|
|
|
|
{ includesWrapper ? true, level ? 1 }:
|
|
|
|
let prefix = concatStringsSep "" (lib.genList (x: " ") (level * 2));
|
|
|
|
|
|
|
|
in (lib.imap1 (i: v:
|
|
|
|
"${if includesWrapper && (i == 1 || i == (lib.length list)) then
|
|
|
|
v
|
|
|
|
else
|
|
|
|
"${prefix}${v}"}") list);
|
2019-09-04 04:30:44 +02:00
|
|
|
}
|