tangled
alpha
login
or
join now
caurea.org
/
shell-brief
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
.
caurea.org
2 months ago
cb0b8665
c30f1c03
+2
-2
1 changed file
expand all
collapse all
unified
split
lib.nix
+2
-2
lib.nix
reviewed
···
17
17
setup ? [ ],
18
18
commands ? [ ],
19
19
}:
20
20
-
kgs.writeShellScriptBin "brief" ''
20
20
+
pkgs.writeShellScriptBin "brief" ''
21
21
clear
22
22
23
23
${banner}
···
38
38
}:
39
39
let
40
40
lib = pkgs.lib;
41
41
-
41
41
+
42
42
mkVarName = name: "status_" + (builtins.replaceStrings [ " " "-" "." ] [ "_" "_" "_" ] name);
43
43
allSetupVars = map (item: mkVarName item.name) setup;
44
44
okValue = "${colors.green}Ok${colors.nc}";