Is there a way to set active icon theme and GTK theme from a terminal?
I would like to write a script that installs and sets everything up the way i like it on a fresh install.
Is there a way to set active icon theme and GTK theme from a terminal?
I would like to write a script that installs and sets everything up the way i like it on a fresh install.
Should work with gsettings try these commands...
Change GTK-Theme:
gsettings set org.gnome.desktop.interface gtk-theme "CoolestThemeOnEarth"
Change Icon-Theme:
gsettings set org.gnome.desktop.interface icon-theme 'MyIconTheme'
Change Window-Theme:
gsettings set org.gnome.desktop.wm.preferences theme "CoolestThemeOnEarth"
GSettings is a GLib implementation of DConf, which stores its data in a binary database.
The gsettings command line tool is simply a tool to access or modify settings via the GSettings API, in the same way that the older gconftool command line tool is for GConf.
– makim Mar 02 '13 at 09:33gsettings
commands at all. If you want to post a complete answer, you would have to addgconftool-2
alternatives for yourgsettings
command? – 71GA Mar 16 '22 at 11:23