All posts by ArchMunky

Firefox – Configuration

Go to about:config and change the following settings to allow different themes for different instances:

services.sync.addons.ignoreUserEnabledChanges = true
services.sync.prefs.sync.extensions.activeThemeID = false.

Favorite Themes

Desktop files (for Linux .local/share/applications)

#!/usr/bin/env xdg-open
[Desktop Entry]
Name=Firefox
Icon=/home/munky/Bin/firefox/stable/browser/chrome/icons/default/default64.png
Exec=/home/munky/Bin/firefox/stable/firefox
Categories=Network;WebBrowser
Type=Application
Encoding=UTF-8
Terminal=false
Version=1.0
StartupWMClass=Firefox

#!/usr/bin/env xdg-open
[Desktop Entry]
Name=Firefox Developer
Icon=/home/munky/Bin/firefox/developer/browser/chrome/icons/default/default64.png
Exec=/home/munky/Bin/firefox/developer/firefox
Categories=Network;WebBrowser
Type=Application
Encoding=UTF-8
Terminal=false
Version=1.0
StartupWMClass=Firefox Developer Edition

Advertisement

Firefox UserChrome

I don’t like the look of the new Proton theme in Firefox. So I’ve created the following userChrome.css to make it look a bit nicer. This theme is based heavily on https://github.com/Tnings/MacosVibrant with changes to make it look nice in non-Mac systems. Basically, I removed the transparency, set the inactive tables to have no background to make it easier to see the active tab, and modified some spacing issues.

Bugs: I’ve noticed that the bookmark toolbar sometimes does not recenter itself when a tab is closed.

Continue reading Firefox UserChrome

Adblock: Taboola

Taboola ads are among the worst online; they format the ads to look like additional content on the websites making it easy to trick the users to click an ad when they think they are viewing another story.  I can’t stand deceptive practices like this so I block them completely using the following rules:

##[id^="taboola"]
##[class^="trc_"]

Converting Virtualbox VM to VMWare

I am running the latest version of Virtualbox on my Windows 8.1 desktop and I’ve noticed my network has been unavailable after the machine resumed from sleep mode.  I found several people that claim the problem is with Virtualbox so I decided to switch to VMWare Player and see if that solved the problem.  The VM I chose to use for the testing is an ArchLinux install.  My Virtualbox VMs are located in the folder V:Virtualbox and my VMWare VMs are located in the folder V:VMWare.

Continue reading Converting Virtualbox VM to VMWare