Last active
August 29, 2015 14:10
-
-
Save ivoarch/2ddb06b65bf7edd2d28a 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 | |
arch=$(uname -m) | |
if [ "$arch" == "x86_64" ]; then | |
pushd /usr/lib64/firefox/langpacks | |
else | |
pushd /usr/lib/firefox/langpacks | |
fi | |
unzip [email protected] install.rdf >/dev/null | |
sed -i '/./,$!d' install.rdf | |
zip -u [email protected] install.rdf >/dev/null | |
rm -f install.rdf >/dev/null | |
popd | |
# Само, ако не ползвате български език по подразбиране? | |
# Във полето за търсене - пишем | |
# about:config | |
# после гледаме за тази опция | |
# intl.locale.matchOS - ако е true, двойно щракане и правим на false | |
# след това търсим и тази опция general.useragent.locale и сменяваме en-US със bg-BG за български. | |
# рестартираме FF | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment