- Get client ID and client secret in Discord Developer Portal and edit
.env - Launch VRChat and Discord (not in browser but standalone application)
- Enable OSC in VRChat
- Run the followings
| #!/usr/bin/env python | |
| # vim: set fileencoding=utf-8 | |
| # | |
| # USAGE: | |
| # Back up your tmux old config, run the script and redirect stdout to your conf | |
| # file. Example: | |
| # | |
| # $ cp ~/.tmux.conf ~/.tmux.conf.orig | |
| # $ python ./tmux-migrate-options.py ~/.tmux.conf.orig > ~/.tmux.conf | |
| # |
| #!/usr/bin/env bash | |
| set -e | |
| tmpdir=$(mktemp -t -d advcp.XXXXXX) | |
| cd ${tmpdir} | |
| wget https://aur.archlinux.org/packages/ad/advcp/advcp.tar.gz | |
| tar xf advcp.tar.gz | |
| source advcp/PKGBUILD |