nix-config/packages/zet-new.nix
Oliver Davies 21e54a64ce
All checks were successful
/ check (push) Successful in 1m34s
Group notes in sub-directories by year and month
2025-07-16 00:57:10 +01:00

21 lines
374 B
Nix

{ pkgs }:
pkgs.writeShellApplication {
name = "zet-new";
runtimeInputs = with pkgs; [
coreutils
];
text = ''
folder="''${ZET_DIR:-"$XDG_DOCUMENTS_DIR/wiki/zet"}/$(date +%Y)/$(date +%m)"
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"
'';
}