customizer: fix linux installation

Signed-off-by: blacksuan19 <i@blacksuan19.me>
This commit is contained in:
blacksuan19 2020-06-26 23:56:11 +08:00
parent 3a617933aa
commit b83c4e958c
2 changed files with 10 additions and 1 deletions

View File

@ -21,7 +21,7 @@ or a built-in feature like [userChrome.css](https://www.userchrome.org/).)
6. ensure notion is closed.
7. optional: to remove previous applications of the notion enhancer, run `cleaner.py`
8. optional: modify the `resources/user.css` file to your liking (see [styling](#styling)).
9. run `customiser.py` to build changes.
9. run `customiser.py` to build changes. (for linux run with sudo)
done: run notion and enjoy.

9
customiser.py Normal file → Executable file
View File

@ -40,6 +40,8 @@ try:
elif sys.platform == 'win32':
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
.rstrip().decode('utf-8').replace('\\', '/') + '/Programs/Notion/resources'
elif sys.platform == 'linux':
filepath = '/opt/notion-app'
else:
print(' > script not compatible with your os!\n (report this to dragonwocky#8449 on discord)')
exit()
@ -197,6 +199,13 @@ try:
print(
f' * {filepath}/app/main/main.js was not found: step skipped.')
if sys.platform == 'linux':
print(f' ...patching app launcher {filepath}/notion-app')
subprocess.call(['sed', '-i', 's/app\.asar/app/', '/usr/bin/notion-app'])
# patch this too just in case
subprocess.call(['sed', '-i', 's/app\.asar/app/', f'{filepath}/notion-app'])
print('\n>>> SUCCESSFULLY CUSTOMISED <<<')
except Exception as e: