summarylogtreecommitdiffstats
path: root/notion-app
blob: b86e4865742a84717324fab30ae96a4890b01c44 (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
electron app.asar $@
popd >/dev/null || exit 1