blob: 6867a4445295f44c84b4a60ddb23d731ecc0ec88 (
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
./joplin
|