25 lines
752 B
Markdown
25 lines
752 B
Markdown
# Jellydisc
|
|
Jellydisc updates Discord Rich Presence by checking what you're currently listening to on Jellyfin!
|
|
|
|
## Requirements
|
|
- A Jellyfin server (self-hosted or hosted)
|
|
- A Discord account
|
|
- Python 3.9 or higher
|
|
|
|
## Installation
|
|
1. Clone this repository
|
|
2. Install the required dependencies:
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
3. Configure the `.env`, using the provided `settings.py` as a template.
|
|
4. Run the application:
|
|
```bash
|
|
python main.py
|
|
```
|
|
|
|
## NOTE
|
|
On MacOS, you'll need to patch the `pypresence` library to work around an issue with it being unable to find the Discord IPC socket. You can do this by editing the `pypresence/utils.py` file.
|
|
|
|
The changes are kept in the `patches/pypresence_macfix.patch` file.
|