MCPcopy Create free account
hub / github.com/HELPMEEADICE/doge-code / unhideComputerUseApps

Function unhideComputerUseApps

src/utils/computerUse/executor.ts:802–811  ·  view source on GitHub ↗
(
  bundleIds: readonly string[],
)

Source from the content-addressed store, hash-verified

800 * at the call site; the caller `.catch()`es.
801 */
802export async function unhideComputerUseApps(
803 bundleIds: readonly string[],
804): Promise<void> {
805 if (bundleIds.length === 0) return
806 if (process.platform === 'darwin') {
807 const cu = requireComputerUseSwift()
808 await cu.apps.unhide([...bundleIds])
809 }
810 // Non-darwin: no-op. Windows/Linux prepareForAction doesn't hide apps.
811}

Callers 1

Calls 2

requireComputerUseSwiftFunction · 0.85
unhideMethod · 0.80

Tested by

no test coverage detected