summarylogtreecommitdiffstats
path: root/joplin-desktop.sh
blob: 86e63a651e9f2c372edcc6e1b64d850c1d315fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

readonly joplin_dir="/usr/share/joplin/"

if [[ ! -d $joplin_dir ]]; then
  echo "Cannot find /usr/share/joplin/"
  exit 1
fi

cd $joplin_dir

./joplin "$@"