Last active
December 30, 2021 20:35
-
-
Save bronze/0ae3ce4a46eba3ff74f2d221ae78a399 to your computer and use it in GitHub Desktop.
linux stuff
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
# https://www.youtube.com/watch?v=wLOZfT0732Y&t=51s | |
sudo apt install grub-efi grub2-common grub-customizer | |
sudo grub-install | |
sudo cp /boot/grub/x86_64-efi/grub.efi /boot/efi/EFI/pop/grubx64.efi | |
grub-customizer | |
# https://github.com/vinceliuice/grub2-themes | |
sudo ./install.sh -t vimix -s ultrawide -i white -b | |
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
// https://dev.to/harrsh/how-to-setup-firefox-developer-edition-on-ubuntu-4inp | |
// https://support.mozilla.org/pt-BR/kb/instale-o-firefox-no-linux | |
wget "https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64" -O firefox-developer.tar.bz2 | |
sudo tar -jxvf firefox-developer.tar.bz2 -C /opt/ | |
sudo mv /opt/firefox*/ /opt/firefox-developer | |
sudo ln -sf /opt/firefox-developer/firefox /usr/bin/firefox-developer | |
echo -e '[Desktop Entry]\n Version=yy.y.y\n Encoding=UTF-8\n Name=Mozilla Firefox\nExec=/opt/firefox-developer/firefox\n Icon=/opt/firefox-developer/browser/chrome/icons/default/default128.png\nType=Application\nCategories=Network' | sudo gedit /usr/share/applications/firefox-developer.desktop | |
sudo gedit /usr/share/applications/firefox-developer.desktop | |
[Desktop Entry] | |
Version=yy.y.y | |
Encoding=UTF-8 | |
Name=Firefox Developer | |
GenericName=Firefox Developer Edition | |
Comment=Firefox Developer | |
Exec=/opt/firefox-developer/firefox %u | |
Icon=/opt/firefox-developer/browser/chrome/icons/default/default128.png | |
Type=Application | |
Categories=Application;Network;X-Developer; | |
Comment=Firefox Developer Edition Web Browser. | |
StartupWMClass=Firefox Developer Edition | |
StartupNotify=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment