From b83c4e958c4b811d1b032cb48d8b6742d89ba99d Mon Sep 17 00:00:00 2001 From: blacksuan19 Date: Fri, 26 Jun 2020 23:56:11 +0800 Subject: [PATCH 1/2] customizer: fix linux installation Signed-off-by: blacksuan19 --- README.md | 2 +- customiser.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) mode change 100644 => 100755 customiser.py diff --git a/README.md b/README.md index c253de0..7160117 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/customiser.py b/customiser.py old mode 100644 new mode 100755 index 437831c..c280f77 --- a/customiser.py +++ b/customiser.py @@ -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: From ba4342dd6079dee31b22729ee975116b575eabc1 Mon Sep 17 00:00:00 2001 From: Abubakar Yagoub Date: Sat, 27 Jun 2020 13:01:05 +0800 Subject: [PATCH 2/2] README: add Linux install instructions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7160117..20a907c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ _note: this is currently an unreleased version of the enhancer, which adds some ## installation -currently, only win10 is supported. it is possible to run this script via the wsl to modify the win10 notion app. +currently, both win10 and Linux are supported. it is possible to run this script via the wsl to modify the win10 notion app. + +For Linux install notion from [here](https://github.com/jaredallard/notion-app). Or if you're using arch install [notion-app](https://aur.archlinux.org/packages/notion-app/) package from AUR. (the [styles](#styling) should also work for the web version. these can be installed via an extension like [stylus](https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en)