summarylogtreecommitdiffstats
path: root/joplin-desktop.sh
blob: 65496ab152e1f07696333270dbc82f316982931b (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 "Did not found joplin data directory"
  exit 1
fi

cd $joplin_dir

./joplin "$@"