tauri-app-system-tray

Installation
SKILL.md

When to use this skill

ALWAYS use this skill when the user mentions:

  • System tray icon or status bar icon
  • Tray menu with actions (show, hide, quit)
  • Platform-specific tray behavior differences

Trigger phrases include:

  • "system tray", "tray icon", "tray menu", "status bar", "minimize to tray"

How to use this skill

  1. Configure a tray icon in your Tauri builder:
    use tauri::{tray::TrayIconBuilder, menu::{Menu, MenuItem}};
    tauri::Builder::default()
        .setup(|app| {
            let show = MenuItem::with_id(app, "show", "Show", true, None::<&str>)?;
    
Related skills

More from partme-ai/full-stack-skills

Installs
7
GitHub Stars
379
First Seen
Mar 25, 2026