11 lines
365 B
Plaintext
11 lines
365 B
Plaintext
|
#!/data/data/com.termux/files/usr/bin/sh
|
||
|
|
||
|
if [ "$#" != "0" ]; then
|
||
|
echo 'usage: termux-reload-style'
|
||
|
echo ' Use without arguments to reload style after modifying'
|
||
|
echo ' $HOME/.termux/colors.properties or $HOME/.termux/font.ttf'
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
LD_LIBRARY_PATH= am broadcast --user 0 -a com.termux.app.reload_style com.termux > /dev/null
|