10 lines
124 B
Bash
10 lines
124 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
ZIMDIR=${HOME}/.zim
|
||
|
|
||
|
echo "Installing Zim Framework"
|
||
|
$(which zsh) ${ZIMDIR}/zimfw.zsh install
|
||
|
|
||
|
exit 0
|
||
|
|