acknowledge existence of official brave snap

This commit is contained in:
Aminda Suomalainen 2025-03-20 20:24:29 +02:00
parent 854561af3d
commit c4994e9fc3
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
2 changed files with 17 additions and 2 deletions

View File

@ -74,4 +74,16 @@ if [[ ! -f "/usr/bin/vivaldi" ]] && [[ ! -f "/usr/bin/vivaldi-snapshot" ]]; then
fi
fi
# TODO: Revisit when they change CEO.
# - 2008: https://en.wikipedia.org/wiki/Brendan_Eich#Appointment_to_CEO_and_resignation
# - 2025: https://news.ycombinator.com/item?id=43251203
#
#if [[ ! -f "/usr/bin/brave-browser-stable" ]] && [[ ! -f "/usr/bin/brave-browser-beta" ]] && [[ ! -f "/usr/bin/brave-browser-nightly" ]]; then
# if [ -f "/snap/bin/brave" ]; then
# snap refresh brave
# else
# snap install brave
# fi
#fi
set +x

View File

@ -1,9 +1,12 @@
#!/usr/bin/env bash
set -x
if [[ -d "$HOME/.config/BraveSoftware/Brave-Browser-Nightly" && -d "$HOME/.cache/BraveSoftware/Brave-Browser-Nightly" ]]; then
/usr/bin/brave-browser-nightly --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
else
elif [ -f /usr/bin/brave-browser-stable ]; then
/usr/bin/brave-browser-stable --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@"
elif [ -f /snap/bin/brave ]; then
snap run brave --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable "$@"
fi
set +x