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

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

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

cd $joplin_dir

./@joplinapp-desktop "$@"