nix-config/packages/zet-new.nix
Oliver Davies 2870a256da
All checks were successful
/ check (push) Successful in 1m40s
Add zet-new script
2025-07-15 13:46:04 +01:00

21 lines
350 B
Nix

{ pkgs }:
pkgs.writeShellApplication {
name = "zet-new";
runtimeInputs = with pkgs; [
coreutils
];
text = ''
folder="''${ZET_DIR:-"$XDG_DOCUMENTS_DIR/wiki/zet"}"
mkdir -p "$folder"
note="$folder/$(date +%Y-%m-%d-%T | sed 's/[-:]//g').md"
printf "# %s\n\n\n" "$1" > "$note"
"$EDITOR" "+normal G" "$note"
'';
}