mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fix cleaner linux filepath
This commit is contained in:
parent
31c75c7d70
commit
89a2dd9c39
@ -32,7 +32,8 @@ try:
|
|||||||
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
|
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
|
||||||
.rstrip().decode('utf-8') + '\\Programs\\Notion\\resources'
|
.rstrip().decode('utf-8') + '\\Programs\\Notion\\resources'
|
||||||
elif sys.platform == 'linux':
|
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':
|
elif sys.platform == 'darwin':
|
||||||
filepath = '/Applications/Notion.app/Contents/Resources'
|
filepath = '/Applications/Notion.app/Contents/Resources'
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user