Xfce Forum

Sub domains
 

You are not logged in.

#1 2011-10-10 03:44:18

johnywhy
Member
Registered: 2011-10-09
Posts: 283

[Solved] How to Hide Tooltips and System Tray?

Hi

two questions about the bottom panel.

-is there any way to hide the window tooltips when i hover mouse over a window button? Better would be to change delay before tips appear.

-is there any way to hide some of the status bar icons, such as Glipper clipboard, battery icon, network status, etc? Best would be to hide individual icons, instead of all icons.

see image:
35m1448.png

Running xfce on puppy linux lucid 5.2.8

Thanks!

Last edited by johnywhy (2019-08-18 14:56:15)


arch xfce x86_64

Offline

#2 2011-10-12 01:57:32

Nomer
Member
Registered: 2011-07-19
Posts: 14

Re: [Solved] How to Hide Tooltips and System Tray?

Hi johnwhy,

What version of xfce are you running? (You can try 'xfce4-about' on the command line or choose "About Xfce" from the menu.)

I don't know about the tool tips.

In regards to hide certain icons in the status bar you can do this, in Xfce 4.8:
- put your mouse over the status bar icons (also know as the "notification area" or the "tray")
- move the all the way to the bottom of the screen
- right click
- click on Properties
This will bring up a window that (among other things) contains a list of the icons in the tray.
Beside each item there is a check box.
- Check the box for each item that you want hidden.

Hope this helps,
Nomer

Last edited by Nomer (2011-10-13 00:45:46)

Offline

#3 2011-12-23 18:50:30

eric_the_idiot
Member
Registered: 2011-12-23
Posts: 58

Re: [Solved] How to Hide Tooltips and System Tray?

echo "gtk-enable-tooltips = 0" >> ~/.gtkrc-2.0
Will disable tooltips. Be warned, there's a bug in xfdesktop where that option will break selecting icons on your desktop. There's a patch available if you want to test it out. The bug report is at: https://bugzilla.xfce.org/show_bug.cgi?id=8192

Offline

#4 2019-08-04 08:43:43

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

Eric, bug is reported as Fixed. Your gtk command still works.


arch xfce x86_64

Offline

#5 2019-08-04 12:32:08

Jerry3904
Member
Registered: 2013-11-09
Posts: 850

Re: [Solved] How to Hide Tooltips and System Tray?

I wonder if it will work with 4.14pre3 after creating the file:

echo "gtk-enable-tooltips = 0" >> ~/.gtkrc-3.0

Will test it.

EDIT: logged out/in, doesn't work.

Last edited by Jerry3904 (2019-08-04 12:39:32)


MX-23 (based on Debian Stable) with our flagship Xfce 4.18.

Offline

#6 2019-08-04 13:31:10

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

Maybe you could add that to the bug report, and change to "not fixed"? smile Or, new bug report?

I added it to the xfce wishlist (first item under Project Wide)
https://wiki.xfce.org/wish_list

Doesn't bother me, since i don't use session mgr.

Last edited by johnywhy (2019-08-04 13:36:53)


arch xfce x86_64

Offline

#7 2019-08-04 13:44:26

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Have a read through this post. It identifies how to hide tooltips in GTK3.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#8 2019-08-04 14:02:51

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

ToZ wrote:

Have a read through this post. It identifies how to hide tooltips in GTK3.

Thx ToZ, but I don't see anything there about panel tooltips.


arch xfce x86_64

Offline

#9 2019-08-04 14:12:36

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Using the "tooltips" designator, will affect all GTK3 tooltips - including those on the panel. If you want to affect only xfce4-panel tooltips, use something like:

.xfce4-panel tooltip { opacity: 0 }

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#10 2019-08-04 14:44:38

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

ToZ wrote:

to affect only xfce4-panel tooltips:

.xfce4-panel tooltip { opacity: 0 }

Do i put that into ~/.config/gtk-3.0/gtk.css ?

i'm getting

% cat ~/.config/gtk-3.0/gtk.css
cat: /home/johny/.config/gtk-3.0/gtk.css: No such file or directory

Create a new file?

Tried this (after removing Jerry's gtk3 fix). Still getting panel tooltips.

Last edited by johnywhy (2019-08-04 15:16:44)


arch xfce x86_64

Offline

#11 2019-08-04 15:16:02

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

Jerry3904 wrote:
echo "gtk-enable-tooltips = 0" >> ~/.gtkrc-3.0

This doesn't remove panel tooltips at all on my desktop.
Only the .gtkrc-2.0 method works.


arch xfce x86_64

Offline

#12 2019-08-04 18:06:26

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

This will only work for the GTK3-build of xfce4-panel - which is version 4.13 or higher. Lower versions are built on GTK2 which is why the .gtkrc-2.0 version works.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#13 2019-08-04 18:10:53

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

ToZ wrote:

This will only work for version 4.13 or higher.

i'm getting

% xfce4-about
xfce4-about-Message: No vendor information found in "/usr/share/xfce4/vendorinfo".

and then a popup window which says "4.14pre". Shouldn't it work?
thx


arch xfce x86_64

Offline

#14 2019-08-04 18:18:41

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

What does:

xfce4-panel -V

...say?


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#15 2019-08-04 18:20:36

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

% xfce4-panel -V
xfce4-panel 4.12.2 (Xfce 4.14pre2)

is 4.13 released yet?


arch xfce x86_64

Offline

#16 2019-08-04 18:40:43

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Which distro are you using? Xfce 4.14pre2 should come packaged with xfce4-panel 4.13.

Edit: strange that Archlabs doesn't. xfce4-panel 4.13 is the development version. Many sub releases have already occurred. It will become 4.14 when Xfce 4.14 is officially released in a week or so.

Last edited by ToZ (2019-08-04 18:43:17)


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#17 2019-08-04 19:50:40

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

ToZ wrote:

Xfce 4.14pre2 should come packaged with xfce4-panel 4.13.

"pre2"? I just have "pre"

xfce4-panel 4.13 is the development version

and therefor shouldn't be installed yet on my arch, correct?

thx


arch xfce x86_64

Offline

#18 2019-08-04 22:17:07

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Actually, it does state pre2:

% xfce4-panel -V
xfce4-panel 4.12.2 (Xfce 4.14pre2)

Looks like Xfce is incorrectly reporting the pre versions. Arch doesn't have the pre-release releases in their repositories.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#19 2019-08-04 22:20:26

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

ToZ wrote:

Actually, it does state pre2

oops, my bad. Regardless, isn't GTK2 a safe bet for now, since 3 isn't even release yet?

thx


arch xfce x86_64

Offline

#20 2019-10-27 18:16:23

johnywhy
Member
Registered: 2011-10-09
Posts: 283

Re: [Solved] How to Hide Tooltips and System Tray?

on archlabs, none of the above methods work


arch xfce x86_64

Offline

#21 2020-09-03 01:58:12

Mellowbob
Member
Registered: 2011-10-16
Posts: 286

Re: [Solved] How to Hide Tooltips and System Tray?

Here I am, late to the party (again). But, I'm trying to get rid of the damned tooltips as well. I'm running xfce4 4.14 (this is from xfce4-about -V) and xfce4-panel xfce4-panel 4.14.3 (Xfce 4.14).
I've added the disable command:

   bob$ cat .gtkrc-3.0
   gtk-enable-tooltips = 0

But it doesn't appear to change anything. All the items in the panel still popup the annoying tooltip.

Suggestions?

Offline

#22 2020-09-03 11:22:54

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Add:

.xfce4-panel tooltip { opacity: 0 }

...to ~/.config/gtk-3.0/gtk.css.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#23 2020-09-03 16:28:00

Mellowbob
Member
Registered: 2011-10-16
Posts: 286

Re: [Solved] How to Hide Tooltips and System Tray?

No cigar. Here's my file

bob$ cat ~/.config/gtk-3.0/gtk.css
.scrollbar {
  -GtkScrollbar-has-backward-stepper: true;
  -GtkScrollbar-has-forward-stepper: true;
  -GtkRange-slider-width: 15;
  -GtkRange-stepper-size: 8;
}

@import 'colors.css';

.xfce4-panel tooltip { opacity: 0 }


And I have logged out/in. Still getting tooltips on my panel.

Offline

#24 2020-09-03 17:06:10

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [Solved] How to Hide Tooltips and System Tray?

Hrmm. It doesn't seem to work anymore.
You could do just:

tooltip { opacity: 0 }

...but that will remove tooltips in all GTK3 apps.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#25 2020-09-03 17:55:04

Mellowbob
Member
Registered: 2011-10-16
Posts: 286

Re: [Solved] How to Hide Tooltips and System Tray?

Darn it. Is this a xfce4 issue or gtk?

Offline

Board footer

Powered by FluxBB