{chromium,vivaldi}: add snap-awareness

This commit is contained in:
Aminda Suomalainen 2025-03-19 16:20:31 +02:00
parent b577f8c1e3
commit 5a1812ab92
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,8 @@
#!/usr/bin/env bash
set -x
/usr/bin/chromium-browser --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
if [ -f /usr/bin/chromium-browser ]; then
/usr/bin/chromium-browser --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
else
snap run chromium --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable "$@"
fi
set +x

View File

@ -2,7 +2,9 @@
set -x
if [[ -d "$HOME/.config/vivaldi-snapshot" && -d "$HOME/.cache/vivaldi-snapshot" ]]; then
/usr/bin/vivaldi-snapshot --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
else
elif [ -f /usr/bin/vivaldi ]; then
/usr/bin/vivaldi --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif [ -f /snap/bin/vivaldi.vivaldi-stable ]; then
snap run vivaldi.vivaldi-stable --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable "$@"
fi
set +x