2018-04-18 18:26:44 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-12-08 01:58:34 +01:00
|
|
|
readonly joplin_dir="/usr/share/joplin-desktop/"
|
2018-04-18 18:26:44 +02:00
|
|
|
|
|
|
|
if [[ ! -d $joplin_dir ]]; then
|
2020-12-08 01:58:34 +01:00
|
|
|
echo "Cannot find /usr/share/joplin-desktop/"
|
2018-04-18 18:26:44 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $joplin_dir
|
|
|
|
|
2020-12-08 01:58:34 +01:00
|
|
|
./@joplinapp-desktop "$@"
|
2018-04-19 16:02:54 +02:00
|
|
|
|