Skip to content
Update Installation authored by Chris Mustola's avatar Chris Mustola
......@@ -50,11 +50,12 @@ This change won't be permanent, so to add the local bin directory to your $PATH
\
Next add a new text file called `teamspeak3` to the local bin directory and make it excecutable: `touch ~/.local/bin/teamspeak3 && chmod +x ~/.local/bin/teamspeak3`\
Now you have to edit the file to point to your teamspeak excecutable.\
For example if your teamspeak excecutable is located at `/home/user/Downloads/teamspeak3_linux.sh`, edit the file to look like this:
For example if your teamspeak excecutable is located at `/home/user/Downloads/ts3client_linux_amd64`, edit the file to look like this:
```plaintext
#!/bin/sh
sh /home/user/Downloads/teamspeak3_linux.sh $@
cd /home/user/Downloads
sh ts3client_linux_amd64 $@
```
You could also do it by running the following command:
......
......