30 lines
782 B
Bash
Executable File
30 lines
782 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" != "0" ]; then
|
|
echo 'usage: termux-setup-storage'
|
|
echo 'Use without arguments to ensure storage permission granted'
|
|
echo 'and symlinks to storage available in $HOME/storage'
|
|
exit
|
|
fi
|
|
|
|
if [ -d "@TERMUX_HOME@/storage" ]; then
|
|
cat <<- EOF
|
|
|
|
It appears that directory '~/storage' already exists.
|
|
This script is going to rebuild its structure from
|
|
scratch, wiping all dangling files. The actual storage
|
|
content IS NOT going to be deleted.
|
|
|
|
EOF
|
|
read -re -p "Do you want to continue? (y/n) " CHOICE
|
|
|
|
if ! [[ "${CHOICE}" =~ (Y|y) ]]; then
|
|
echo "Aborting configuration and leaving directory '~/storage' intact."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
am broadcast --user 0 \
|
|
--es com.termux.app.reload_style storage \
|
|
-a com.termux.app.reload_style com.termux > /dev/null
|