Last active
August 29, 2015 14:21
-
-
Save 128keaton/e8ba558903c82739d414 to your computer and use it in GitHub Desktop.
fixed flash/pdf/other for chromium run "curl -L https://goo.gl/B286lX | bash"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#based on https://gist.github.com/3065781 which is based on https://wiki.archlinux.org/index.php/Chromium. | |
echo "mounting file system" | |
mount -o remount, rw / | |
#Flash, pdf. | |
#mp3,mp4, stopped working... | |
echo "removing MP3/4 fix" | |
rm -r /usr/lib/cronos/libffmpegsumo.so | |
rm -r /opt/google/chrome/libffmpegsumo.so | |
rm -r /usr/lib/mozilla/plugins/libffmpegsumo.so | |
echo "Removing PDF" | |
rm -r /opt/google/chrome/libpdf.so. | |
#flashr | |
echo "removing Flash" | |
rm -r /opt/google/chrome/pepper/libpepflashplayer.so | |
rm -r /opt/data/manifest.json /opt/google/chrome/pepper/manifest.json | |
rm -r /opt/google/chrome/pepper/pepper-flash.info. | |
restart ui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment