mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-11 17:46:41 -05: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);
|
|
}
|