How to make XFCE desktop icons text transparent?
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I have openSUSE 13.2 which comes with KDE as default. I want to try new desktop environments so I started XFCE. When the XFCE desktop starts the icon names on the desktop are not transparent. How to make this text transparent ?
xfce
add a comment |Â
up vote
2
down vote
favorite
I have openSUSE 13.2 which comes with KDE as default. I want to try new desktop environments so I started XFCE. When the XFCE desktop starts the icon names on the desktop are not transparent. How to make this text transparent ?
xfce
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have openSUSE 13.2 which comes with KDE as default. I want to try new desktop environments so I started XFCE. When the XFCE desktop starts the icon names on the desktop are not transparent. How to make this text transparent ?
xfce
I have openSUSE 13.2 which comes with KDE as default. I want to try new desktop environments so I started XFCE. When the XFCE desktop starts the icon names on the desktop are not transparent. How to make this text transparent ?
xfce
xfce
asked May 3 '15 at 8:26
3bdalla
1481820
1481820
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
3
down vote
This is a very known issue on the Internet so here are the steps:
1- Open the terminal and execute sudo vi .gtkrc-2.0
. (You can choose your own text editor.
2- Press a
and go to the end of the file.
3- Copy and paste the following style script
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
4- Press Esc
and then :wq
to save the file.
Source
P.S.: If you copied the style from the website it won't work. It appears that the double quotation mark is not THE quotation mark so I changed them all and posted it here.
add a comment |Â
up vote
1
down vote
In the above example, "sudo" is not needed, as the file is being created inside the user's home directory. i.e.
vi .gtkrc-2.0
or
nano .gtkrc-2.0
is enough.
Then add these, save and quit:
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
logout xfce and log back in.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
This is a very known issue on the Internet so here are the steps:
1- Open the terminal and execute sudo vi .gtkrc-2.0
. (You can choose your own text editor.
2- Press a
and go to the end of the file.
3- Copy and paste the following style script
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
4- Press Esc
and then :wq
to save the file.
Source
P.S.: If you copied the style from the website it won't work. It appears that the double quotation mark is not THE quotation mark so I changed them all and posted it here.
add a comment |Â
up vote
3
down vote
This is a very known issue on the Internet so here are the steps:
1- Open the terminal and execute sudo vi .gtkrc-2.0
. (You can choose your own text editor.
2- Press a
and go to the end of the file.
3- Copy and paste the following style script
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
4- Press Esc
and then :wq
to save the file.
Source
P.S.: If you copied the style from the website it won't work. It appears that the double quotation mark is not THE quotation mark so I changed them all and posted it here.
add a comment |Â
up vote
3
down vote
up vote
3
down vote
This is a very known issue on the Internet so here are the steps:
1- Open the terminal and execute sudo vi .gtkrc-2.0
. (You can choose your own text editor.
2- Press a
and go to the end of the file.
3- Copy and paste the following style script
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
4- Press Esc
and then :wq
to save the file.
Source
P.S.: If you copied the style from the website it won't work. It appears that the double quotation mark is not THE quotation mark so I changed them all and posted it here.
This is a very known issue on the Internet so here are the steps:
1- Open the terminal and execute sudo vi .gtkrc-2.0
. (You can choose your own text editor.
2- Press a
and go to the end of the file.
3- Copy and paste the following style script
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
4- Press Esc
and then :wq
to save the file.
Source
P.S.: If you copied the style from the website it won't work. It appears that the double quotation mark is not THE quotation mark so I changed them all and posted it here.
answered May 3 '15 at 8:26
3bdalla
1481820
1481820
add a comment |Â
add a comment |Â
up vote
1
down vote
In the above example, "sudo" is not needed, as the file is being created inside the user's home directory. i.e.
vi .gtkrc-2.0
or
nano .gtkrc-2.0
is enough.
Then add these, save and quit:
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
logout xfce and log back in.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
In the above example, "sudo" is not needed, as the file is being created inside the user's home directory. i.e.
vi .gtkrc-2.0
or
nano .gtkrc-2.0
is enough.
Then add these, save and quit:
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
logout xfce and log back in.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
In the above example, "sudo" is not needed, as the file is being created inside the user's home directory. i.e.
vi .gtkrc-2.0
or
nano .gtkrc-2.0
is enough.
Then add these, save and quit:
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
logout xfce and log back in.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
In the above example, "sudo" is not needed, as the file is being created inside the user's home directory. i.e.
vi .gtkrc-2.0
or
nano .gtkrc-2.0
is enough.
Then add these, save and quit:
style "xfdesktop-icon-view"
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 170
base[NORMAL] = "#cccccc"
base[SELECTED] = "#cccccc"
base[ACTIVE] = "#cccccc"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
logout xfce and log back in.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 25 mins ago
nobody
111
111
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
nobody is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f200096%2fhow-to-make-xfce-desktop-icons-text-transparent%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password