BeautifulDiscord icon indicating copy to clipboard operation
BeautifulDiscord copied to clipboard

Discord Snap support

Open skyecodes opened this issue 6 years ago • 4 comments

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.

skyecodes avatar May 13 '18 11:05 skyecodes

It's actually in ~/snap/discord IIRC

simoniz0r avatar May 13 '18 15:05 simoniz0r

@simoniz0r You're right, my bad. I edited the issue description.

skyecodes avatar May 14 '18 14:05 skyecodes

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))

SparrowOchon avatar Dec 07 '18 22:12 SparrowOchon

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

JakeStanger avatar Jun 01 '19 18:06 JakeStanger