Last active
September 28, 2017 18:41
-
-
Save fa7ad/8cbc504d0aacda6d228e0d8dd3f56779 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
codec=/opt/vivaldi/lib/libffmpeg.so | |
if [ ! -f "${codec}.orig" ]; then | |
echo Backing up original libffmpeg.so | |
sudo mv $codec "${codec}.orig" | |
fi | |
echo Installing new libffmpeg.so... | |
sudo mv /usr/share/vivaldi-codecs/libffmpeg.so $codec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment