mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-04-05 07:28:09 +02:00
{chromium,vivaldi}: add snap-awareness
This commit is contained in:
parent
b577f8c1e3
commit
5a1812ab92
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user