Compare commits

...

5 Commits

12 changed files with 70 additions and 6 deletions

View File

@ -9,15 +9,19 @@ ln -sf $FLATPAKEXPORTS/com.rafaelmardojai.Blanket $TARGETDIR/blanket
# `flatpak make-current org.briarproject.Briar stable`?
ln -sf $FLATPAKEXPORTS/org.briarproject.Briar $TARGETDIR/briar
ln -sf $FLATPAKEXPORTS/org.claws_mail.Claws-Mail $TARGETDIR/claws-mail
ln -sf $FLATPAKEXPORTS/com.visualstudio.code $TARGETDIR/code
ln -sf $FLATPAKEXPORTS/com.vscodium.codium $TARGETDIR/codium
ln -sf $FLATPAKEXPORTS/chat.delta.desktop $TARGETDIR/deltachat
ln -sf $FLATPAKEXPORTS/im.riot.Riot $TARGETDIR/element
ln -sf $FLATPAKEXPORTS/com.github.tchx84.Flatseal $TARGETDIR/flatseal
ln -sf $FLATPAKEXPORTS/chat.schildi.desktop $TARGETDIR/schildichat
ln -sf $FLATPAKEXPORTS/org.signal.Signal $TARGETDIR/signal-desktop
ln -sf $FLATPAKEXPORTS/org.telegram.desktop $TARGETDIR/telegram-desktop
ln -sf $FLATPAKEXPORTS/com.github.micahflee.torbrowser-launcher $TARGETDIR/torbrowser-launcher-flatpak
ln -sf $FLATPAKEXPORTS/org.videolan.VLC $TARGETDIR/vlc-flatpak
ln -sf $FLATPAKEXPORTS/net.davidotek.pupgui2 $TARGETDIR/protonup
# Electron apps that actually need wrappers and flags
#ln -sf $FLATPAKEXPORTS/com.visualstudio.code $TARGETDIR/code
#ln -sf $FLATPAKEXPORTS/com.vscodium.codium $TARGETDIR/codium
#ln -sf $FLATPAKEXPORTS/chat.delta.desktop $TARGETDIR/deltachat
#ln -sf $FLATPAKEXPORTS/im.riot.Riot $TARGETDIR/element
#ln -sf $FLATPAKEXPORTS/chat.schildi.desktop $TARGETDIR/schildichat
#ln -sf $FLATPAKEXPORTS/org.signal.Signal $TARGETDIR/signal-desktop
set +x

5
bash/usr-local-bin/brave Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
/usr/bin/brave-browser-stable --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

5
bash/usr-local-bin/code Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
flatpak run com.visualstudio.code --no-sandbox --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

6
bash/usr-local-bin/codium Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -x
# https://github.com/flathub/com.vscodium.codium/issues/55
flatpak run com.vscodium.codium --no-sandbox --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

4
bash/usr-local-bin/deltachat Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -x
flatpak run chat.delta.desktop --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

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

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

5
bash/usr-local-bin/element Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
flatpak run im.riot.Riot --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

7
bash/usr-local-bin/element-tor Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -x
# proxy authentication is not supported
# https://github.com/vector-im/element-web/issues/3320
flatpak run im.riot.Riot --proxy-server=socks5://127.0.0.1:9050 --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
# To run Microsoft Edge under Wayland
# with Mullvad proxy
# Wireguard: --proxy-server=socks5://10.64.0.1
# OpenVPN: --proxy-server=socks5://10.8.0.1
set -x
/usr/bin/microsoft-edge --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

5
bash/usr-local-bin/schildichat Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
flatpak run chat.schildi.desktop --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Signal desktop with Wayland, notification fix & tray
set -x
# --start-in-tray - would be nice, but then I cannot open it from there, thus --use-tray-icon
flatpak run org.signal.Signal --use-tray-icon --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x

4
bash/usr-local-bin/vivaldi Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -x
/usr/bin/vivaldi --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations $@
set +x