summarylogtreecommitdiffstats
path: root/notion-app
blob: 13a1f7b16d0fd2fa2c80ebeec7970c5985dea897 (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
electron2 app.asar
popd >/dev/null || exit 1