mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-16 00:21:55 +02:00
9 lines
297 B
TypeScript
9 lines
297 B
TypeScript
import { platform } from "@yaakapp-internal/platform";
|
|
import { useIsFullscreen } from "@yaakapp-internal/ui";
|
|
|
|
export function useStoplightsVisible() {
|
|
const fullscreen = useIsFullscreen();
|
|
const stoplightsVisible = platform.osType() === "macos" && !fullscreen;
|
|
return stoplightsVisible;
|
|
}
|