2022-05-10 20:23:12 +00:00
|
|
|
import os
|
2022-05-12 07:14:23 +00:00
|
|
|
import sys
|
2022-05-10 20:23:12 +00:00
|
|
|
|
2022-05-11 00:03:51 +00:00
|
|
|
name = "Discord Rich Presence for Plex"
|
2022-06-27 15:32:52 +00:00
|
|
|
version = "2.2.5"
|
2022-05-12 07:14:23 +00:00
|
|
|
|
2022-05-11 00:03:51 +00:00
|
|
|
plexClientID = "discord-rich-presence-plex"
|
2022-05-12 07:14:23 +00:00
|
|
|
discordClientID = "413407336082833418"
|
|
|
|
configFilePath = "config.json"
|
|
|
|
cacheFilePath = "cache.json"
|
2022-05-22 04:37:09 +00:00
|
|
|
logFilePath = "console.log"
|
2022-05-12 07:14:23 +00:00
|
|
|
|
2022-05-10 20:23:12 +00:00
|
|
|
isUnix = sys.platform in ["linux", "darwin"]
|
|
|
|
processID = os.getpid()
|