2015-12-27 15:36:54 +01:00
|
|
|
#!/data/data/com.termux/files/usr/bin/sh
|
|
|
|
|
|
|
|
if [ "$#" != "0" ]; then
|
2016-12-28 23:14:09 +01:00
|
|
|
echo 'usage: termux-reload-settings'
|
|
|
|
echo 'Use without arguments to reload settings after modifying any of:'
|
|
|
|
echo ' ~/.termux/colors.properties'
|
2015-12-27 15:36:54 +01:00
|
|
|
echo ' ~/.termux/font.ttf '
|
2016-12-28 23:14:09 +01:00
|
|
|
echo ' ~/.termux/termux.properties'
|
|
|
|
exit
|
2015-12-27 15:36:54 +01:00
|
|
|
fi
|
|
|
|
|
2016-04-11 02:20:17 +02:00
|
|
|
am broadcast --user 0 -a com.termux.app.reload_style com.termux > /dev/null
|