BeautifulDiscord
BeautifulDiscord copied to clipboard
Discord Snap support
I'm using the Snap version of Discord.
BeautifulDiscord can't find the ~/.config/discord
folder because it doesn't exist.
Instead, it's located at ~/snap/discord/current/.config/discord
.
It's actually in ~/snap/discord
IIRC
@simoniz0r You're right, my bad. I edited the issue description.
Change the following line in app.py
:
config = os.path.expanduser(os.path.join('~/.config', discord_version))
to
config = os.path.expanduser(os.path.join('~/snap/discord/current/.config/', discord_version))
The alternative to this for anybody stumbling across this who doesn't want to edit code, is to create a symlink at ~/.config/discord
targeting ~/snap/discord/current/.config/discord