11 lines
232 B
Bash
Executable File
11 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
if [ -d "${HOME}/.shortcuts" ]; then
|
|
cp "${SUB}/.shortcuts/"* "${HOME}/.shortcuts"
|
|
else
|
|
cp -r "${SUB}/.shortcuts" "${HOME}"
|
|
fi
|
|
|
|
mkdir -p "${HOME}/bin"
|
|
ln -s "$(which "${EDITOR}")" "${HOME}/bin/termux-file-editor" |