mirror of
https://github.com/phin05/discord-rich-presence-plex
synced 2024-11-21 17:13:04 +00:00
README tweaks
This commit is contained in:
parent
46593378d9
commit
1c72a08041
7 changed files with 12 additions and 10 deletions
|
@ -6,4 +6,4 @@ CONTRIBUTING.md
|
|||
data
|
||||
Dockerfile
|
||||
pyrightconfig.json
|
||||
Showcase.psd
|
||||
assets/showcase.psd
|
||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
data
|
||||
Showcase.psd
|
||||
assets/showcase.psd
|
||||
|
|
|
@ -7,4 +7,4 @@ COPY requirements.txt .
|
|||
RUN pip install -U -r requirements.txt --no-cache-dir
|
||||
COPY . .
|
||||
ENV DRPP_IS_IN_CONTAINER=true
|
||||
CMD ["python", "main.py"]
|
||||
ENTRYPOINT ["python", "main.py"]
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018-2023 phin05
|
||||
Copyright (c) 2018-2024 phin05
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
14
README.md
14
README.md
|
@ -1,6 +1,6 @@
|
|||
# Discord Rich Presence for Plex
|
||||
|
||||
![Showcase](https://user-images.githubusercontent.com/59180111/168054648-af0590fd-9bd7-42d0-91b2-d7974643debd.png)
|
||||
![Showcase](assets/showcase.png)
|
||||
|
||||
Discord Rich Presence for Plex is a Python script which displays your [Plex](https://www.plex.tv/) status on [Discord](https://discord.com/) using [Rich Presence](https://discord.com/developers/docs/rich-presence/how-to).
|
||||
|
||||
|
@ -161,7 +161,7 @@ users:
|
|||
|
||||
The "Display current activity as a status message" setting must be enabled in Discord Settings → Activity Settings → Activity Privacy.
|
||||
|
||||
![Discord Settings](https://user-images.githubusercontent.com/59180111/186830889-35af3895-ece0-4a7d-9efb-f68640116884.png)
|
||||
![Discord Activity Privacy](assets/discord-activity-privacy.png)
|
||||
|
||||
## Configuration - Environment Variables
|
||||
|
||||
|
@ -205,11 +205,11 @@ If you're running the container for the first time (when there are no users in t
|
|||
|
||||
### Containerised Discord
|
||||
|
||||
If you wish to run Discord in a container as well, you need to mount a designated directory from the host machine into your Discord container at the path where Discord would store its Unix socket file. You can determine this path by checking the environment variables inside the container as per the [volumes](#volumes) section above, or you can set one of the environment variables yourself. That same host directory needs to be mounted into this script's container at `/run/app`. Ensure that the designated directory being mounted into the containers is owned by the user the containerized Discord process is running as.
|
||||
If you wish to run Discord in a container as well, you need to mount a designated directory from the host machine into your Discord container at the path where Discord would store its Unix socket file. You can determine this path by checking the environment variables inside the container as per the [volumes](#volumes) section above, or you can set one of the environment variables yourself. That same host directory needs to be mounted into this script's container at `/run/app`. Ensure that the designated directory being mounted into the containers is owned by the user the containerised Discord process is running as.
|
||||
|
||||
Depending on the Discord container image you're using, there might be a lot of resource usage overhead and other complications.
|
||||
|
||||
#### Example using [kasmweb/discord](https://hub.docker.com/r/kasmweb/discord)
|
||||
#### Docker Compose example using [kasmweb/discord](https://hub.docker.com/r/kasmweb/discord)
|
||||
|
||||
```yaml
|
||||
services:
|
||||
|
@ -226,7 +226,7 @@ services:
|
|||
volumes:
|
||||
- ./kasmcord:/run/user/1000
|
||||
user: "0"
|
||||
entrypoint: sh -c "chown kasm-user:kasm-user /run/user/1000 && su kasm-user -c \"/dockerstartup/kasm_default_profile.sh /dockerstartup/vnc_startup.sh /dockerstartup/kasm_startup.sh\""
|
||||
entrypoint: sh -c "chown -R kasm-user:kasm-user /run/user/1000 && su kasm-user -c '/dockerstartup/kasm_default_profile.sh /dockerstartup/vnc_startup.sh /dockerstartup/kasm_startup.sh'"
|
||||
drpp:
|
||||
container_name: drpp
|
||||
image: ghcr.io/phin05/discord-rich-presence-plex:latest
|
||||
|
@ -234,8 +234,10 @@ services:
|
|||
volumes:
|
||||
- ./kasmcord:/run/app:ro
|
||||
- ./drpp:/app/data
|
||||
depends_on:
|
||||
- kasmcord
|
||||
```
|
||||
|
||||
### Docker on Windows and macOS
|
||||
|
||||
The container image for this script is based on Linux. Docker uses virtualisation to run Linux containers on Windows and macOS. In such cases, if you want to run this script in a container, you need to run Discord in a container as well, as per the instructions above.
|
||||
The container image for this script is based on Linux. Docker uses virtualisation to run Linux containers on Windows and macOS. In such cases, if you want to run this script's container, you need to run Discord in a Linux container as well, as per the instructions above.
|
||||
|
|
BIN
assets/discord-activity-privacy.png
Normal file
BIN
assets/discord-activity-privacy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
assets/showcase.png
Normal file
BIN
assets/showcase.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 81 KiB |
Loading…
Reference in a new issue