allow switching chrome dir

This commit is contained in:
Toshit Chawda 2024-10-07 19:09:32 -07:00
parent 8d568f281e
commit d4b94d4b21
No known key found for this signature in database
GPG Key ID: 91480ED99E2B3D9D

View File

@ -1,13 +1,15 @@
#!/bin/bash #!/bin/bash
echo This script may be removed or disabled later with discretion of google. 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 then
google-chrome chrome://components &> /dev/null & "$CHROME" chrome://components &> /dev/null &
exit 0 exit 0
fi fi
# Search directory for versions # 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 #Let the user know what version we are on
echo "$HIGHESTVERSIONAPPARENTLY" echo "$HIGHESTVERSIONAPPARENTLY"
@ -22,4 +24,4 @@ cp -rvf "$HIGHESTVERSIONAPPARENTLY"/. original/PKIMetadata/2000
rm -rvf original/PKIMetadata/2000/_metadata rm -rvf original/PKIMetadata/2000/_metadata
rm -rvf original/PKIMetadata/2000/manifest.fingerprint rm -rvf original/PKIMetadata/2000/manifest.fingerprint
#end of script #end of script