Difference between revisions of "DarkMode and f.lux"
Jump to navigation
Jump to search
(→f.lux) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
== blank tab or Firefox Home == | == blank tab or Firefox Home == | ||
Open <code>about:config</code> and change the value <code>browser.display.background_color</code> to the color of your choice. I'm using <code>#595959</code> (neutral gray). | Open <code>about:config</code> and change the value <code>browser.display.background_color</code> to the color of your choice. I'm using <code>#595959</code> (neutral gray). | ||
= [https://github.com/xflux-gui/fluxgui f.lux] = | |||
The fluxgui is only known to work with Python 3. | |||
Ubuntu PPA Package Manager Install | |||
<source lang=bash> | |||
sudo add-apt-repository ppa:nathan-renniewaldock/flux | |||
sudo apt-get update | |||
sudo apt-get install fluxgui | |||
</source> | |||
;For Ubuntu 20.04 LTS and above | |||
While sudo apt-get update there is an error [https://github.com/xflux-gui/fluxgui/issues/144 #144] | |||
<source lang=bash> | |||
E: The repository 'http://ppa.launchpad.net/nathan-renniewaldock/flux/ubuntu focal Release' does not have a Release file. | |||
# To solve: | |||
sudo vim /etc/apt/sources.list.d/nathan-renniewaldock-ubuntu-flux-focal.list | |||
# Replace focal to bionic and save it. | |||
# Repeat above mentioned steps from line 2. | |||
</source> | |||
[https://justgetflux.com/linux.html Install] | |||
<source lang=bash> | |||
sudo apt-get install python3-pexpect python3-distutils gir1.2-appindicator3-0.1 gir1.2-gtk-3.0 | |||
</source> | |||
= References = | = References = | ||
*[https://superuser.com/questions/1235975/change-firefox-new-tab-background change-firefox-new-tab-background] Superuser.com | *[https://superuser.com/questions/1235975/change-firefox-new-tab-background change-firefox-new-tab-background] Superuser.com | ||
</source> |
Latest revision as of 07:17, 24 May 2021
Firefox
blank tab or Firefox Home
Open about:config
and change the value browser.display.background_color
to the color of your choice. I'm using #595959
(neutral gray).
f.lux
The fluxgui is only known to work with Python 3. Ubuntu PPA Package Manager Install
sudo add-apt-repository ppa:nathan-renniewaldock/flux sudo apt-get update sudo apt-get install fluxgui
- For Ubuntu 20.04 LTS and above
While sudo apt-get update there is an error #144
E: The repository 'http://ppa.launchpad.net/nathan-renniewaldock/flux/ubuntu focal Release' does not have a Release file. # To solve: sudo vim /etc/apt/sources.list.d/nathan-renniewaldock-ubuntu-flux-focal.list # Replace focal to bionic and save it. # Repeat above mentioned steps from line 2.
sudo apt-get install python3-pexpect python3-distutils gir1.2-appindicator3-0.1 gir1.2-gtk-3.0
References
- change-firefox-new-tab-background Superuser.com
</source>