mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-20 15:51:23 +02:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
import { invoke } from "@tauri-apps/api/core";
|
|
|
|
export function setWindowTitle(title: string) {
|
|
invoke("plugin:yaak-mac-window|set_title", { title }).catch(console.error);
|
|
}
|
|
|
|
export function setWindowTheme(bgColor: string) {
|
|
invoke("plugin:yaak-mac-window|set_theme", { bgColor }).catch(console.error);
|
|
}
|