aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:23:27 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:23:27 +0100
commitbcdd26302f45f976981da0d3855161ac024b94c6 (patch)
treeb20df0db1d056b0174ac47ff73b2ed2d82354528
parent04896c78095dc0f568ca758f789178fc909302e5 (diff)
downloaddotfiles-bcdd26302f45f976981da0d3855161ac024b94c6.tar.gz
dotfiles-bcdd26302f45f976981da0d3855161ac024b94c6.tar.bz2
dotfiles-bcdd26302f45f976981da0d3855161ac024b94c6.zip
docs: fix 'just undeclared' doc comment (was collapsed by just)
-rw-r--r--justfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/justfile b/justfile
index fb6b10b..aee4cc7 100644
--- a/justfile
+++ b/justfile
@@ -77,8 +77,7 @@ dotfile-drift:
echo "=== Dotfile drift ==="
chezmoi status -S . || true
-# Print undeclared packages (installed but not in any meta/*.txt), one per line, unindented
-# Pipeable: just undeclared | paru -Rs -
+# Print undeclared packages one per line, unindented (pipe to 'paru -Rs -' to remove them)
undeclared:
#!/bin/sh
declared=$(cat meta/*.txt | grep -v '^\s*#' | grep -v '^\s*$' | sort -u)