├── .gitignore ├── LICENSE ├── README.md ├── discordapp ├── app_icon.png ├── csgo_icon.png ├── ct_icon.png └── t_icon.png ├── distribute.bat ├── gamestate_integration_discordrpc.cfg ├── icon.ico ├── img ├── csgo_icon.png ├── discord_icon.png └── scnshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── install.py ├── main.py ├── rpc.py ├── test.bat └── test_silent.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/README.md -------------------------------------------------------------------------------- /discordapp/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/discordapp/app_icon.png -------------------------------------------------------------------------------- /discordapp/csgo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/discordapp/csgo_icon.png -------------------------------------------------------------------------------- /discordapp/ct_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/discordapp/ct_icon.png -------------------------------------------------------------------------------- /discordapp/t_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/discordapp/t_icon.png -------------------------------------------------------------------------------- /distribute.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/distribute.bat -------------------------------------------------------------------------------- /gamestate_integration_discordrpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/gamestate_integration_discordrpc.cfg -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/icon.ico -------------------------------------------------------------------------------- /img/csgo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/csgo_icon.png -------------------------------------------------------------------------------- /img/discord_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/discord_icon.png -------------------------------------------------------------------------------- /img/scnshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/scnshots/1.png -------------------------------------------------------------------------------- /img/scnshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/scnshots/2.png -------------------------------------------------------------------------------- /img/scnshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/scnshots/3.png -------------------------------------------------------------------------------- /img/scnshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/scnshots/4.png -------------------------------------------------------------------------------- /img/scnshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/img/scnshots/5.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/install.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/main.py -------------------------------------------------------------------------------- /rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenrys/csgo_richpresence/HEAD/rpc.py -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- 1 | python main.py 2 | pause -------------------------------------------------------------------------------- /test_silent.bat: -------------------------------------------------------------------------------- 1 | python main.py --silent 2 | pause --------------------------------------------------------------------------------