2024-12-11 01:23:03 +03:00

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"