yt-video-to-summary / chrome_sandbox
zman1x1's picture
add chromium browser to packages list
e287ef7 unverified
raw
history blame
268 Bytes
#!/bin/bash
CHROME=""
if command -v google-chrome > /dev/null; then
CHROME=$(which google-chrome)
elif command -v chrome-browser > /dev/null; then
CHROME=$(which chrome-browser)
else
echo "No version for chrome found"
exit 1
fi
$CHROME --no-sandbox $@