summarylogtreecommitdiffstats
path: root/notion-app
blob: e2a808bab521ace0ab6b4bba3b5d9f6048b6ae8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
#
# Launch notion.so

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