Added script to configure GTK - Gnome
Added another script to reset gtk
This commit is contained in:
parent
0367c0f223
commit
e1b2350268
3 changed files with 24 additions and 1 deletions
13
gnome-config.sh
Normal file
13
gnome-config.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Set certain configuration options in gnome
|
||||||
|
# because the cult of simple design has gone too far
|
||||||
|
# Works for budgie wm on Ubuntu 17.10 as well
|
||||||
|
|
||||||
|
# Restore menu icons
|
||||||
|
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
|
||||||
|
|
||||||
|
# To reduce GNOME 3 titlebar height
|
||||||
|
cp gtk.css ~/.config/gtk-3.0/gtk.css
|
||||||
|
|
||||||
|
# Restart gnome shell - manually with alt+f2, type r and press return (not in budgie)
|
||||||
|
gnome-shell --replace
|
||||||
9
gtk.css
Normal file
9
gtk.css
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
.header-bar.default-decoration {
|
||||||
|
padding-top: 0px;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar.default-decoration .button.titlebutton {
|
||||||
|
padding-top: 0px;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
@ -20,4 +20,5 @@ for f in .gnome .gnome2 .gconf .gconfd .metacity; do mv $f ${f}.bak; done or mkd
|
||||||
dconf reset -f /org/gnome/
|
dconf reset -f /org/gnome/
|
||||||
|
|
||||||
# Reset Gnome Extensions
|
# Reset Gnome Extensions
|
||||||
mv ~/.local/share/gnome-shell/extensions ~/.local/share/gnome-shell/extensions-bkup
|
mv ~/.local/share/gnome-shell/extensions ~/.local/share/gnome-shell/extensions-bkup
|
||||||
|
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||||
Loading…
Add table
Add a link
Reference in a new issue