Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System tray tooltips in Tauri

Tags:

rust

tauri

Is there a simple way to make a tooltip appear when hovering a system tray icon? This is really common in Windows apps. SystemTrayEvent does not appear to support a hover event, and SystemTray does not seem to have a way to set a hover text.

like image 201
Pieter Avatar asked Oct 17 '25 00:10

Pieter


1 Answers

Search tooltip on docs.rs you can find one

Example:

let tray = SystemTray::new().with_menu(tray_menu).with_tooltip("App Name");
like image 147
pansila Avatar answered Oct 19 '25 18:10

pansila