9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/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
|