mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-04-19 06:37:57 +02:00
13 lines
597 B
Bash
Executable File
13 lines
597 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
if [ -f /usr/bin/chromium-browser ]; then
|
|
/usr/bin/chromium-browser --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
|
|
elif [ -f /usr/bin/chromium ]; then
|
|
/usr/bin/chromium --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
|
|
elif [ -f /snap/bin/chromium ]; then
|
|
snap run chromium --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable "$@"
|
|
else
|
|
flatpak run org.chromium.Chromium --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable "$@"
|
|
fi
|
|
set +x
|