You are not logged in.
Hi!
I've Installed XFCE4 on my Arch this morning, but GTK3 applications have no themes : here a screen.
So I want to know how to apply a theme on GTK3 applications
Thanks!
Last edited by Kyansaa (2011-06-14 21:42:09)
Offline
Have a look at this thread: https://bbs.archlinux.org/viewtopic.php?id=116451
Offline
Where is XDG_CONFIG_HOME ? And how to install the Adwaita theme ?
Offline
echo $XDG_CONFIG_HOMEAnd Adwaita comes packaged with gnome-themes-standard.
Offline
This doesn't work for me, there is an other solution ? Did I miss something ?
Thanks.
Offline
There is more than one approach described in the thread, which one did you try?
Offline
Oh I'm sorry I didn't read the others... Just the first.
So I've finally read the all topic and I block at the step to do that : "Making .config/gtk-3.0 a symlink to /usr/share/themes/Adwaita/gtk-3.0 worked", I don't understand that... What is a symlink, who to do that ?
Thanks.
Offline
Create symbolic links with ln -s.
touch test1
ln -s test1 test2
ls -l test*
-rw-r--r-- 1 $USER users 0 14. Jun 22:26 test1
lrwxrwxrwx 1 $USER users 5 14. Jun 22:26 test2 -> test1Translates to:
cd $XDG_CONFIG_HOME
mv gtk-3.0 backup-gtk-3.0
ln -s /usr/share/themes/Adwaita/gtk-3.0 gtk-3.0ls should now show:
ls -l gtk-3.0
lrwxrwxrwx 1 $USER users 34 14. Jun 22:28 gtk-3.0 -> /usr/share/themes/Adwaita/gtk-3.0/Offline
Thanks! It's working. ![]()
Offline