Discord Rich Presence Client (RPC) for Notion
Big thanks to nandiniproothi and Lockna
This is my variation of this script, but written under Windows OS.
The use of this script is possible only on Windows OS, since the Win32 API is involved here.
- Windows
- Python 3.*
- Notion Desktop App
- Install
pipenv
or check that it is installed:
pip install pipenv
- Clone the repository:
git clone https://github.com/L4zzur/notion-discord-rpc.git
- Go to projects folder:
cd notion-discord-rpc
- Create virtual environment using
pipenv
:
pipenv shell
or using virtualenv/venv and activate it:
virtualenv venv
python -m venv venv
- Install all dependencies:
Using
pipenv
:
pipenv install
or the old-fashioned way using requirements.txt
:
pip3 install -r requirements.txt
- Run the python script:
python main.py
- I would like to wrap this script using the pystray library and assemble it into an exe file, as well as create a GUI and installer.