2020-06-01 20:23:30 +03:00
|
|
|
#!/bin/bash
|
2015-12-27 19:53:30 -05:00
|
|
|
|
|
|
|
if [ "$#" != "0" ]; then
|
2017-01-03 17:21:43 -05:00
|
|
|
echo 'usage: termux-setup-storage'
|
|
|
|
echo 'Use without arguments to ensure storage permission granted'
|
|
|
|
echo 'and symlinks to storage available in $HOME/storage'
|
|
|
|
exit
|
2015-12-27 19:53:30 -05:00
|
|
|
fi
|
|
|
|
|
2020-06-01 20:23:30 +03:00
|
|
|
if [ -d "@TERMUX_HOME@/storage" ]; then
|
|
|
|
echo
|
|
|
|
echo "Directory '~/storage' is going to be wiped. No storage contents will be touched."
|
2020-06-01 20:27:14 +03:00
|
|
|
echo
|
2020-06-01 20:23:30 +03:00
|
|
|
read -re -p "Do you want to continue ? (y/n) " CHOICE
|
|
|
|
|
|
|
|
if ! [[ "${CHOICE}" =~ (Y|y) ]]; then
|
|
|
|
echo "Leaving intact the contents of '~/storage' directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-04-10 20:20:17 -04:00
|
|
|
am broadcast --user 0 \
|
2015-12-27 19:53:30 -05:00
|
|
|
--es com.termux.app.reload_style storage \
|
|
|
|
-a com.termux.app.reload_style com.termux > /dev/null
|