fix cleaner linux filepath

This commit is contained in:
dragonwocky 2020-07-07 08:47:15 +10:00
parent 31c75c7d70
commit 89a2dd9c39
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D

View File

@ -32,7 +32,8 @@ try:
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
.rstrip().decode('utf-8') + '\\Programs\\Notion\\resources'
elif sys.platform == 'linux':
filepath = '/opt/notion-app'
filepath = '/opt/notion-app' if os.path.exists(
'/opt/notion-app') else '/opt/notion'
elif sys.platform == 'darwin':
filepath = '/Applications/Notion.app/Contents/Resources'
else: