File size: 358 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /**
* 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');
};
|