Initial configuration of the tox client
This commit is contained in:
parent
2519f04bbd
commit
c30911852e
|
@ -8323,6 +8323,10 @@ function install_tox_client {
|
||||||
exit 74872
|
exit 74872
|
||||||
fi
|
fi
|
||||||
make install
|
make install
|
||||||
|
su -c 'echo "n
|
||||||
|
/nick $MY_USERNAME
|
||||||
|
/exit
|
||||||
|
" | /usr/bin/toxic -d' - $MY_USERNAME
|
||||||
|
|
||||||
echo 'install_tox_client' >> $COMPLETION_FILE
|
echo 'install_tox_client' >> $COMPLETION_FILE
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,7 +107,14 @@ function mesh_babel {
|
||||||
if [ ! -f /tmp/meshtype ]; then
|
if [ ! -f /tmp/meshtype ]; then
|
||||||
sudo apt-get -y install babeld
|
sudo apt-get -y install babeld
|
||||||
sudo apt-get -y install irssi mumble
|
sudo apt-get -y install irssi mumble
|
||||||
|
if [ ! -f /usr/bin/toxic ]; then
|
||||||
sudo apt-get -y install toxic
|
sudo apt-get -y install toxic
|
||||||
|
echo "n
|
||||||
|
/nick $USER
|
||||||
|
/exit
|
||||||
|
" | /usr/bin/toxic -d
|
||||||
|
fi
|
||||||
|
|
||||||
CURR_DIR=$(pwd)
|
CURR_DIR=$(pwd)
|
||||||
if [ ! -f ~/develop/toxid ]; then
|
if [ ! -f ~/develop/toxid ]; then
|
||||||
if [ ! -f ~/develop ]; then
|
if [ ! -f ~/develop ]; then
|
||||||
|
@ -206,7 +213,13 @@ function mesh_batman {
|
||||||
sudo apt-get -y install python-dev libevent-dev ebtables python-pip
|
sudo apt-get -y install python-dev libevent-dev ebtables python-pip
|
||||||
sudo apt-get -y install wireless-tools rfkill
|
sudo apt-get -y install wireless-tools rfkill
|
||||||
sudo apt-get -y install irssi mumble
|
sudo apt-get -y install irssi mumble
|
||||||
|
if [ ! -f /usr/bin/toxic ]; then
|
||||||
sudo apt-get -y install toxic
|
sudo apt-get -y install toxic
|
||||||
|
echo "n
|
||||||
|
/nick $USER
|
||||||
|
/exit
|
||||||
|
" | /usr/bin/toxic -d
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
batman_script=/tmp/batman
|
batman_script=/tmp/batman
|
||||||
|
|
Loading…
Reference in New Issue