mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-25 19:01:38 +01:00
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import { type } from "@tauri-apps/plugin-os";
|
|
import { useIsFullscreen } from "@yaakapp-internal/ui";
|
|
|
|
export function useStoplightsVisible() {
|
|
const fullscreen = useIsFullscreen();
|
|
const stoplightsVisible = type() === "macos" && !fullscreen;
|
|
return stoplightsVisible;
|
|
}
|