summarylogtreecommitdiffstats
path: root/notion-app
blob: 3d224c788bd7a03919280585010d3ff87c85fba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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