Position your windows at well-known locations.
This plugin is a port of electron-positioner for Tauri.
This plugin requires a Rust version of at least 1.77.2
Platform Level Notes windows
linux
macos
android
ios
Install the positioner plugin to get started.
Use your project’s package manager to add the dependency:
npm run tauri add positioner
yarn run tauri add positioner
pnpm tauri add positioner
deno task tauri add positioner
cargo tauri add positioner
Run the following command in the src-tauri
folder to add the plugin to the project’s dependencies in Cargo.toml
:
cargo add tauri-plugin-positioner --target ' cfg(any(target_os = "macos", windows, target_os = "linux")) '
Modify lib.rs
to initialize the plugin:
#[cfg_attr(mobile, tauri :: mobile_entry_point)]
tauri :: Builder :: default ()
app . handle () . plugin (tauri_plugin_positioner :: init ());
. run (tauri :: generate_context! ())
. expect ( " error while running tauri application " );
Install the JavaScript Guest bindings using your preferred JavaScript package manager:
npm install @tauri-apps/plugin-positioner
yarn add @tauri-apps/plugin-positioner
pnpm add @tauri-apps/plugin-positioner
deno add npm:@tauri-apps/plugin-positioner
bun add @tauri-apps/plugin-positioner
Additional setup is required to get tray-relative positions to work.
Add tray-icon
feature to your Cargo.toml
file:
tauri-plugin-positioner = { version = " 2.0.0 " , features = [ " tray-icon " ] }
Setup on_tray_event
for positioner plugin:
tauri :: Builder :: default ()
// This is required to get tray-relative positions to work
app . handle () . plugin (tauri_plugin_positioner :: init ());
tauri :: tray :: TrayIconBuilder :: new ()
. on_tray_icon_event ( | tray_handle , event | {
tauri_plugin_positioner :: on_tray_event ( tray_handle . app_handle (), & event );
. run (tauri :: generate_context! ())
. expect ( " error while running tauri application " );
The plugin’s APIs are available through the JavaScript guest bindings:
import { moveWindow, Position } from ' @tauri-apps/plugin-positioner ' ;
// when using `"withGlobalTauri": true`, you may use
// const { moveWindow, Position } = window.__TAURI__.positioner;
moveWindow ( Position . TopRight );
You can import and use the Window trait extension directly through Rust:
use tauri_plugin_positioner :: {WindowExt, Position};
let mut win = app . get_webview_window ( " main " ) . unwrap ();
let _ = win . as_ref () . window () . move_window (Position :: TopRight);
By default all potentially dangerous plugin commands and scopes are blocked and cannot be accessed. You must modify the permissions in your capabilities
configuration to enable these.
See the Capabilities Overview for more information and the step by step guide to use plugin permissions.
Allows the moveWindow and handleIconState APIs
allow-move-window
set-tray-icon-state
Permission Table
Identifier
Description
positioner:allow-move-window
Enables the move_window command without any pre-configured scope.
positioner:deny-move-window
Denies the move_window command without any pre-configured scope.
positioner:allow-set-tray-icon-state
Enables the set_tray_icon_state command without any pre-configured scope.
positioner:deny-set-tray-icon-state
Denies the set_tray_icon_state command without any pre-configured scope.
© 2024 Tauri Contributors. CC-BY / MIT