()
| 5 | import { isRunningOnHomespace } from '../utils/envUtils.js'; |
| 6 | import { useStartupNotification } from './notifs/useStartupNotification.js'; |
| 7 | function getChromeFlag(): boolean | undefined { |
| 8 | if (process.argv.includes('--chrome')) { |
| 9 | return true; |
| 10 | } |
| 11 | if (process.argv.includes('--no-chrome')) { |
| 12 | return false; |
| 13 | } |
| 14 | return undefined; |
| 15 | } |
| 16 | export function useChromeExtensionNotification() { |
| 17 | useStartupNotification(_temp); |
| 18 | } |