app / src /utils /env.ts
AZILS's picture
Upload 323 files
a21c316 verified
/**
* Detect if the app is running in a Tauri environment
*/
export const isTauri = () => {
return typeof window !== 'undefined' &&
(!!(window as any).__TAURI_INTERNALS__ || !!(window as any).__TAURI__);
};
/**
* Detect if running on Linux
*/
export const isLinux = () => {
return navigator.userAgent.toLowerCase().includes('linux');
};