You are not logged in.

#1 2013-07-27 21:18:34

JohnnyDeacon
Member
From: Colombia
Registered: 2012-01-18
Posts: 81

Problem with GTK Themes in Gnome 3.8

Hello everyone

I just installed gnome 3.8 and I applied some themes, but these themes do not apply to window bar always showing me the default theme buttons. I have tried everything with no solution.

Any ideas?

image1

image2

Offline

#2 2013-07-27 23:57:10

marcio
Member
Registered: 2010-10-08
Posts: 39

Re: Problem with GTK Themes in Gnome 3.8

Hi,

There is something missing in your system, in my Arch updated there is an option called "Current Theme" (in portuguese: Tema Atual). In your screenshort there isn't this option that modify the window border theme.
z3zzokW.png

Last edited by marcio (2013-07-27 23:58:01)

Offline

#3 2013-07-28 13:28:22

notthesun
Member
Registered: 2013-04-21
Posts: 6

Re: Problem with GTK Themes in Gnome 3.8

i've this problem too and i can't find any solution...

Offline

#4 2013-07-28 16:53:56

JohnnyDeacon
Member
From: Colombia
Registered: 2012-01-18
Posts: 81

Re: Problem with GTK Themes in Gnome 3.8

@marcio

I just install gnome 3.8 from scratch, Does your gnome shell was an uptade or new install? It is a weird thing, since I cant find any solution, I have installed all packages from gnome and gnome extra hmm

Offline

#5 2013-07-28 20:30:18

DreaMeat
Member
Registered: 2013-07-28
Posts: 2

Re: Problem with GTK Themes in Gnome 3.8

I had the same problem when trying to install the "Uncomplicated" theme. I'm not sure if it's a proper solution but changing the window theme by using gsettings worked for me.

 gsettings set org.gnome.desktop.wm.preferences theme "ThemeName" 

where "ThemeName" denotes the name of the theme you want to install. For instance by installing the window theme for "Uncomplicated" I used

 gsettings set org.gnome.desktop.wm.preferences theme "Uncomplicated" 

By the way I found this code on http://www.fandigital.com/2012/06/chang … gnome.html

Hope this helps.


Note: If I put the theme files on /usr/share/themes and run the above commands as root I got some errors. Later I put the theme files on ~/.themes then run the command as a regular user. Then It worked.

Offline

#6 2013-07-29 04:25:38

JohnnyDeacon
Member
From: Colombia
Registered: 2012-01-18
Posts: 81

Re: Problem with GTK Themes in Gnome 3.8

DreaMeat wrote:

I had the same problem when trying to install the "Uncomplicated" theme. I'm not sure if it's a proper solution but changing the window theme by using gsettings worked for me.

 gsettings set org.gnome.desktop.wm.preferences theme "ThemeName" 

where "ThemeName" denotes the name of the theme you want to install. For instance by installing the window theme for "Uncomplicated" I used

 gsettings set org.gnome.desktop.wm.preferences theme "Uncomplicated" 

By the way I found this code on http://www.fandigital.com/2012/06/chang … gnome.html

Hope this helps.


Note: If I put the theme files on /usr/share/themes and run the above commands as root I got some errors. Later I put the theme files on ~/.themes then run the command as a regular user. Then It worked.

Weird but it works, the only thing I guess is that gnome-tweak-tool has some bugs when applying themes.

Offline

#7 2013-08-01 02:18:19

wangchong
Member
Registered: 2013-06-25
Posts: 76

Re: Problem with GTK Themes in Gnome 3.8

I have just the same problem and the following code doesn't apply in my situation.

gsettings set org.gnome.desktop.wm.preferences theme "ThemeName" 

I do have a current theme option in gnome-tweak-tool, but I found no custom theme choice in current theme option. I have to choose between awaita and high contrast. Customs themes, for example "FlatStudio", can only be chosen in gtk+ theme. Did I miss any thing? I just extracted the themes in ~./themes fold.
ps. using the code above, my themes automatically changes to something like HighContrast.

Last edited by wangchong (2013-08-01 02:18:45)

Offline

#8 2013-08-05 05:37:17

unknow04
Member
Registered: 2012-06-29
Posts: 11

Re: Problem with GTK Themes in Gnome 3.8

I have the same problem, but if you noticed you can change the window bar theme with some default themes, so i guess there's some incompabilitie with the old themes.

Offline

#9 2013-08-13 13:43:07

jilen
Member
Registered: 2013-01-17
Posts: 15

Re: Problem with GTK Themes in Gnome 3.8

I just got the same problem. Really annoying, because I am those who cannot live without eyecandy

Last edited by jilen (2013-08-13 13:43:20)

Offline

#10 2013-09-25 12:32:16

bobi
Member
Registered: 2013-04-23
Posts: 5

Re: Problem with GTK Themes in Gnome 3.8

Dirty− however less dirty than actual python code − hack to have some keys back in Gnome-tweak-tool; in file /usr/lib/python2.7/site-packages/gtweak/gsettings.py, add the two following lines:

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

Just before the following code (normally around line 35):

        if not schema_filename:
            schema_filename = schema_name + ".gschema.xml"

Edit: It works at least for the Actual theme option & the Windows tab; see:

Before:
s9EJaYH.png

After:
T0c4vCX.png

Last edited by bobi (2013-09-25 12:40:26)

Offline

#11 2013-09-28 12:14:03

sb56637
Member
Registered: 2009-02-18
Posts: 63

Re: Problem with GTK Themes in Gnome 3.8

bobi wrote:

Dirty− however less dirty than actual python code − hack to have some keys back in Gnome-tweak-tool; in file /usr/lib/python2.7/site-packages/gtweak/gsettings.py, add the two following lines:

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

Just before the following code (normally around line 35):

        if not schema_filename:
            schema_filename = schema_name + ".gschema.xml"

Thanks a ton!! This was driving me crazy.

Offline

#12 2013-10-29 01:54:26

wuxu92
Member
Registered: 2013-10-29
Posts: 1

Re: Problem with GTK Themes in Gnome 3.8

thanks so much, this do solve the problem

bobi wrote:

Dirty− however less dirty than actual python code − hack to have some keys back in Gnome-tweak-tool; in file /usr/lib/python2.7/site-packages/gtweak/gsettings.py, add the two following lines:

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

Just before the following code (normally around line 35):

        if not schema_filename:
            schema_filename = schema_name + ".gschema.xml"

Edit: It works at least for the Actual theme option & the Windows tab; see:

Before:
http://i.imgur.com/s9EJaYH.png

After:
http://i.imgur.com/T0c4vCX.png

Offline

Board footer

Powered by FluxBB