mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
|
|
# notion-enhancer
|
|
# (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
# (c) 2020 TarasokUA
|
|
# (https://dragonwocky.me/) under the MIT license
|
|
|
|
import os
|
|
import sys
|
|
import platform
|
|
import subprocess
|
|
from shutil import rmtree
|
|
from time import sleep
|
|
|
|
# f'{bold}=== title ==={normal}' = headers
|
|
# '*' = information
|
|
# '...' = actions
|
|
# '###' = warnings
|
|
# '>' = exit
|
|
|
|
bold = '\033[1m'
|
|
normal = '\033[0m'
|
|
|
|
print(f'{bold}=== NOTION ENHANCER CLEANING LOG ==={normal}\n')
|
|
try:
|
|
filepath = ''
|
|
if 'microsoft' in platform.uname()[3].lower() and sys.platform == 'linux':
|
|
filepath = '/mnt/c/' + \
|
|
subprocess.run(
|
|
['cmd.exe', '/c', 'echo', '%localappdata%'], stdout=subprocess.PIPE).stdout \
|
|
.rstrip().decode('utf-8')[3:].replace('\\', '/') + '/Programs/Notion/resources'
|
|
elif sys.platform == 'win32':
|
|
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'
|
|
elif sys.platform == 'darwin':
|
|
filepath = '/Applications/Notion.app/Contents/Resources'
|
|
else:
|
|
print(' > script not compatible with your os!\n (report this to dragonwocky#8449 on discord)')
|
|
exit()
|
|
|
|
if os.path.exists(os.path.join(filepath, 'app')):
|
|
print(
|
|
f' ...removing folder {os.path.join(filepath, "app")}')
|
|
rmtree(os.path.join(filepath, 'app'))
|
|
else:
|
|
print(
|
|
f' * {os.path.join(filepath, "app")} was not found: step skipped.')
|
|
|
|
if os.path.isfile(os.path.join(filepath, 'app.asar.bak')):
|
|
print(' ...renaming asar.app.bak to asar.app')
|
|
os.rename(os.path.join(filepath, 'app.asar.bak'),
|
|
os.path.join(filepath, 'app.asar'))
|
|
else:
|
|
print(
|
|
f' * {os.path.join(filepath, "app.asar.bak")} was not found: step skipped.')
|
|
|
|
if sys.platform == 'linux' and 'microsoft' not in platform.uname()[3].lower():
|
|
print(
|
|
f' ...patching app launcher')
|
|
subprocess.call(
|
|
['sed', '-i', r's/app/app\.asar/', '/usr/bin/notion-app'])
|
|
# patch this too just in case
|
|
subprocess.call(['sed', '-i', r's/app/app\.asar/',
|
|
os.path.join(filepath, "notion-app")])
|
|
|
|
print(f'\n{bold}>>> SUCCESSFULLY CLEANED <<<{normal}')
|
|
|
|
except Exception as e:
|
|
print(f'\n{bold}### ERROR (report this to dragonwocky#8449 on discord) ###{normal}\n{str(e)}')
|
|
|
|
print(f'\n{bold}=== END OF LOG ==={normal}')
|