Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
MunyDev 2024-10-07 22:14:26 -04:00
commit 4a57e6323f
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62

View File

@ -1,13 +1,15 @@
#!/bin/bash
echo This script may be removed or disabled later with discretion of google.
if [ ! -d "$HOME"/.config/google-chrome/PKIMetadata ]
echo "using chrome ${CHROME:="google-chrome"}"
if [ ! -d "$HOME/.config/$CHROME/PKIMetadata" ]
then
google-chrome chrome://components &> /dev/null &
"$CHROME" chrome://components &> /dev/null &
exit 0
fi
# Search directory for versions
HIGHESTVERSIONAPPARENTLY=$(find "$HOME"/.config/google-chrome/PKIMetadata/ -maxdepth 1 -mindepth 1 -type d| head -n 1)
HIGHESTVERSIONAPPARENTLY=$(find "$HOME/.config/$CHROME/PKIMetadata/" -maxdepth 1 -mindepth 1 -type d| head -n 1)
#Let the user know what version we are on
echo "$HIGHESTVERSIONAPPARENTLY"