tauri-app-positioner
When to use this skill
ALWAYS use this skill when the user mentions:
- Positioning windows near the system tray
- Multi-monitor or multi-display window alignment
- Consistent window placement across platforms
Trigger phrases include:
- "positioner", "window position", "tray window", "multi-monitor", "align window"
How to use this skill
- Install the positioner plugin:
cargo add tauri-plugin-positioner - Register the plugin in your Tauri builder:
use tauri_plugin_positioner::Position; tauri::Builder::default() .plugin(tauri_plugin_positioner::init()) - Configure capabilities in
src-tauri/capabilities/default.json:{ "permissions": ["positioner:allow-move-window"] } - Position a window from the frontend:
import { moveWindow, Position } from '@tauri-apps/plugin-positioner'; await moveWindow(Position.TrayCenter); // center below tray icon await moveWindow(Position.TopRight); // top-right corner of screen await moveWindow(Position.BottomRight); // bottom-right corner - Handle multi-display by checking which monitor the tray icon is on and positioning relative to it
- Account for scaling factors on HiDPI displays that affect coordinate calculations
Outputs
- Positioner plugin setup with Position enum
- Tray-relative and screen-relative positioning
- Multi-display and HiDPI scaling guidance
References
Keywords
tauri positioner, window position, tray window, multi-monitor, align
More from partme-ai/full-stack-skills
vite
Guidance for Vite using the official Guide, Config Reference, and Plugins pages. Use when the user needs Vite setup, configuration, or plugin selection details.
68uniapp-project
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
40ascii-cli-logo-banner
Entry point for ASCII CLI banners that routes to the Python built-in font skill or figlet.js/FIGfont skill. Use when the user wants a startup banner, ASCII logo, terminal welcome screen, or CLI branding for a service.
38ascii-image-to-ascii
“Convert an image into ASCII art (readable + detail variants, width/charset controls, optional ANSI), for terminal previews and plain-text image substitutes.”
34vue-router-v4
Provides comprehensive guidance for Vue Router v4 including route configuration, navigation, nested routes, route guards, and Vue 3 integration. Use when the user asks about Vue Router v4, needs to set up routing for Vue 3 applications, implement navigation guards, or work with Vue Router v4 features.
33template-skill
Replace with description of the skill and when Claude should use it.
30