Skip to content

Instantly share code, notes, and snippets.

@bronze
Last active December 30, 2021 20:35
Show Gist options
  • Save bronze/0ae3ce4a46eba3ff74f2d221ae78a399 to your computer and use it in GitHub Desktop.
Save bronze/0ae3ce4a46eba3ff74f2d221ae78a399 to your computer and use it in GitHub Desktop.
linux stuff
# 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
// 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