Files
yaak-mountain-loop/apps/yaak-client/lib/reveal.ts
Gregory Schier 7314aedc71 Merge main into proxy branch (formatting and docs)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 12:09:59 -07:00

10 lines
224 B
TypeScript

import { type } from "@tauri-apps/plugin-os";
const os = type();
export const revealInFinderText =
os === "macos"
? "Reveal in Finder"
: os === "windows"
? "Show in Explorer"
: "Show in File Manager";