Files
hearth/package/printprogress.nix
T

8 lines
143 B
Nix

{ pkgs, ... }:
let
name = "printprogress";
in
pkgs.writeShellScriptBin "${name}" ''
printf "%s%s%s\n" "''${YELLOW}" "$*" "''${RESET}"
''