mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
12 lines
143 B
Bash
Executable File
12 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Creates a new `zet` inside the House Call Pro `Zettlekasten`
|
|
|
|
_main() {
|
|
(ZETDIR="$HXZET" eval zet "$@")
|
|
}
|
|
|
|
_main "$@"
|