Last active
August 17, 2023 16:02
-
-
Save gregjhogan/ee762bc606dac9b9af1e160d38b65450 to your computer and use it in GitHub Desktop.
ubuntu 20.04 install adwaita dark theme
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
# default theme broken and not available after upgrade from ubuntu 18.04 | |
# running these two commands seems to fix it | |
sudo apt-get --reinstall install ubuntu-session | |
sudo apt-get --reinstall install yaru-* | |
# optionally reset everything | |
dconf reset -f /org/gnome/ | |
# tweak tool to select theme | |
sudo apt-get install gnome-tweak | |
# add adwaita-dark theme variant | |
sudo apt-get install gnome-themes-extra | |
# open tweaks and go to Appearance and select Adwaita-dark | |
gnome-tweaks | |
# also set gtk default | |
vim ~/.config/gtk-3.0/settings.ini | |
# set: gtk-application-prefer-dark-theme=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
do we also need to restart our system after running this script.