summarylogtreecommitdiffstats
path: root/notion-enhancer
diff options
context:
space:
mode:
Diffstat (limited to 'notion-enhancer')
-rw-r--r--notion-enhancer16
1 files changed, 15 insertions, 1 deletions
diff --git a/notion-enhancer b/notion-enhancer
index 4d1993d8bcaf..10169e8062f5 100644
--- a/notion-enhancer
+++ b/notion-enhancer
@@ -1,6 +1,19 @@
+#colored warning
+warn() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
post_install() {
echo "Applying notion-enhancer automatically..."
notion-enhancer apply -y
+ warn "The installer will own the files necessary for it to work with chmod -R a+wr"
+ chmod -R a+wr /usr/lib/node_modules/notion-enhancer/ /opt/notion-app/
+ chmod a+wr /usr/share/applications/notion-app.desktop /usr/bin/notion-app
}
post_upgrade() {
@@ -14,5 +27,6 @@ post_upgrade() {
pre_remove() {
echo "Disabling notion-enhancer..."
- notion-enhancer remove -y
+ warn "The data folder will NOT be deleted"
+ notion-enhancer remove -n
}