feat: add setup script for zettelkasten

master
Hektor Misplon 2025-05-09 22:16:19 +02:00 committed by Hektor Misplon (aider)
parent 8046bd1868
commit b58ff906e9
1 changed files with 8 additions and 0 deletions

8
.bin/setup-zk Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
if [ ! -d ~/.zk ]; then
echo "[zk] Setting up zettelkasten"
gh repo clone zk ~/.zk
else
echo "[zk] Zettelkasten already set up. Use 'zk' to open it"
fi