From 73b544eafac9fe7211f08169311a1e030acec216 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 29 Apr 2024 14:11:22 +0300 Subject: [PATCH] bash/usr-local-bin: add joplin for wayland --- bash/usr-local-bin/.gitignore | 1 + bash/usr-local-bin/joplin | 1 + bash/usr-local-bin/joplin-desktop | 20 ++++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 120000 bash/usr-local-bin/joplin create mode 100755 bash/usr-local-bin/joplin-desktop diff --git a/bash/usr-local-bin/.gitignore b/bash/usr-local-bin/.gitignore index a332894..acbf70a 100644 --- a/bash/usr-local-bin/.gitignore +++ b/bash/usr-local-bin/.gitignore @@ -3,3 +3,4 @@ edge-* libreawoo htop-foot teams +joplin diff --git a/bash/usr-local-bin/joplin b/bash/usr-local-bin/joplin new file mode 120000 index 0000000..3ce773c --- /dev/null +++ b/bash/usr-local-bin/joplin @@ -0,0 +1 @@ +joplin-desktop \ No newline at end of file diff --git a/bash/usr-local-bin/joplin-desktop b/bash/usr-local-bin/joplin-desktop new file mode 100755 index 0000000..9169a97 --- /dev/null +++ b/bash/usr-local-bin/joplin-desktop @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +# I was unable to get the Flatpak to start and the Snap needed the usual, so +# here we are. Then I learned that it just needs --ozone-platform=wayland +# instead of the old --ozone-platform-hint=auto, but whatever works or is +# installed is fine... + +set -x +if [ -f /snap/bin/joplin-desktop ]; then + # https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1951491/comments/104 + unset DBUS_SESSION_BUS_ADDRESS + snap run joplin-desktop --ozone-platform=wayland "$@" +elif [ -f /var/lib/flatpak/exports/bin/net.cozic.joplin_desktop ]; then + flatpak run net.cozic.joplin_desktop --ozone-platform=wayland "$@" +elif [ -f ~/.local/share/flatpak/exports/bin/net.cozic.joplin_desktop ]; then + flatpak run --user net.cozic.joplin_desktop --ozone-platform=wayland "$@" +else + /usr/bin/joplin-notes --ozone-platform=wayland +fi +set +x