Change GTK settings via command line
TomyOne opened this issue · 3 comments
TomyOne commented
Hello is there or in plan to have possibility to change setting directly from command line?
Could be useful to quickly change let's say GTK theme between light and dark theme via keybinding.
Something like:
nwg-look -c gtk-theme="theme-name"
Thank you!
TomyOne commented
Well after checking the code I found out this solution for it, but a bit of hacking :)
sed -i -e 's/gtk-theme=.*/gtk-theme=<THEME_NAME>/g' ${HOME}/.local/share/nwg-look/gsettings
nwg-look -a
nwg-piotr commented
Try gsettings set org.gnome.desktop.interface gtk-theme "ThemeNameHere"
.
TomyOne commented
ahh yeah or that is much better :) Thanks!