mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-19 12:57:21 +02:00
Compare commits
4 Commits
2c4a1ebf0d
...
3d5f73f6f5
Author | SHA1 | Date | |
---|---|---|---|
3d5f73f6f5 | |||
73b544eafa | |||
fdfaa40fe8 | |||
0118ce4993 |
3
bash/usr-local-bin/.gitignore
vendored
3
bash/usr-local-bin/.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
edge
|
||||
edge-guest
|
||||
edge-*
|
||||
libreawoo
|
||||
htop-foot
|
||||
teams
|
||||
joplin
|
||||
|
1
bash/usr-local-bin/edge-beta
Symbolic link
1
bash/usr-local-bin/edge-beta
Symbolic link
@ -0,0 +1 @@
|
||||
microsoft-edge-beta
|
1
bash/usr-local-bin/edge-beta-guest
Symbolic link
1
bash/usr-local-bin/edge-beta-guest
Symbolic link
@ -0,0 +1 @@
|
||||
microsoft-edge-beta-guest
|
1
bash/usr-local-bin/edge-dev
Symbolic link
1
bash/usr-local-bin/edge-dev
Symbolic link
@ -0,0 +1 @@
|
||||
microsoft-edge-dev
|
1
bash/usr-local-bin/edge-dev-guest
Symbolic link
1
bash/usr-local-bin/edge-dev-guest
Symbolic link
@ -0,0 +1 @@
|
||||
microsoft-edge-dev-guest
|
1
bash/usr-local-bin/joplin
Symbolic link
1
bash/usr-local-bin/joplin
Symbolic link
@ -0,0 +1 @@
|
||||
joplin-desktop
|
20
bash/usr-local-bin/joplin-desktop
Executable file
20
bash/usr-local-bin/joplin-desktop
Executable 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
|
4
bash/usr-local-bin/microsoft-edge-beta
Executable file
4
bash/usr-local-bin/microsoft-edge-beta
Executable 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
|
5
bash/usr-local-bin/microsoft-edge-beta-guest
Executable file
5
bash/usr-local-bin/microsoft-edge-beta-guest
Executable file
@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -x
|
||||
microsoft-edge-beta --guest "$@"
|
||||
set +x
|
4
bash/usr-local-bin/microsoft-edge-dev
Executable file
4
bash/usr-local-bin/microsoft-edge-dev
Executable 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
|
5
bash/usr-local-bin/microsoft-edge-dev-guest
Executable file
5
bash/usr-local-bin/microsoft-edge-dev-guest
Executable 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
|
Loading…
x
Reference in New Issue
Block a user