Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 11716  / 3 Years ago, wed, may 12, 2021, 7:29:04

I installed Ubuntu Gnome 13.10 and when I change GTK theme using Gnome Tweak Tool, only theme of widgets changes, theme of Window border remains same.



Can somebody help me to fix this issue ?


More From » gnome

 Answers
4

Thanks to the solution linked by user62716: https://bbs.archlinux.org/viewtopic.php?id=167309, let me type it out here.



cd /usr/share/pyshared/gtweak/
sudo gedit gsettings.py


Insert this before line 37:



if schema_name == "org.gnome.desktop.wm.preferences":
schema_filename = schema_name + ".gschema.xml"


Now it should look like:



def __init__(self, schema_name, schema_dir=None, schema_filename=None, **options):
if not schema_dir:
schema_dir = gtweak.GSETTINGS_SCHEMA_DIR
if schema_name == "org.gnome.desktop.wm.preferences":
schema_filename = schema_name + ".gschema.xml"
if not schema_filename:
schema_filename = schema_name + ".gschema.xml"


Save, and exit. Open Tweak Tool, go to "Theme", and for "Current theme", select your desired theme.


[#28929] Thursday, May 13, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
motivengry

Total Points: 459
Total Questions: 112
Total Answers: 108

Location: Bonaire
Member since Sat, May 1, 2021
3 Years ago
motivengry questions
Tue, Oct 4, 22, 10:02, 2 Years ago
Wed, May 31, 23, 14:33, 12 Months ago
;