Compare commits

...

4 Commits

13 changed files with 47 additions and 3 deletions

View File

@ -1,5 +1,6 @@
edge
edge-guest
edge-*
libreawoo
htop-foot
teams
joplin

View File

@ -0,0 +1 @@
microsoft-edge-beta

View File

@ -0,0 +1 @@
microsoft-edge-beta-guest

1
bash/usr-local-bin/edge-dev Symbolic link
View File

@ -0,0 +1 @@
microsoft-edge-dev

View File

@ -0,0 +1 @@
microsoft-edge-dev-guest

1
bash/usr-local-bin/joplin Symbolic link
View File

@ -0,0 +1 @@
joplin-desktop

View File

@ -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

View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -x
/usr/bin/microsoft-edge-beta --ozone-platform=wayland --ozone-platform-hint=wayland --enable-features=WaylandWindowDecorations,WebContentsForceDark "$@"
set +x

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
microsoft-edge-beta --guest "$@"
set +x

View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -x
/usr/bin/microsoft-edge-dev --ozone-platform=wayland --ozone-platform-hint=wayland --enable-features=WaylandWindowDecorations,WebContentsForceDark "$@"
set +x

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
microsoft-edge-dev --guest "$@"
set +x

@ -1 +1 @@
Subproject commit b2d5427ba97425de8c302208d1a6d036800e8f25
Subproject commit 23e3c8ecc32c62d6de2a9e4f4efc963bdef99205

@ -1 +1 @@
Subproject commit ef9c4acfc3ed525eca4c269ba0230797dc11fdf5
Subproject commit 8636aaebe8eb9ebf648c8bb46305f5d542b5990e