#!/usr/bin/env bash # # Launch notion electron app if [[ ! -e "/opt/notion-app" ]]; then echo "Error: /opt/notion not found" exit 1 fi pushd "/opt/notion-app/" >/dev/null || exit 1 electron6 app.asar $@ popd >/dev/null || exit 1