We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4036b99 commit a867588Copy full SHA for a867588
info.plist
@@ -18,7 +18,7 @@
18
<key>modifiersubtext</key>
19
<string></string>
20
<key>vitoclose</key>
21
- <false></false>
+ <true></true>
22
</dict>
23
</array>
24
<key>FA64DD3E-B353-4804-9783-DB856D8D2C4C</key>
src/main/open-chrome-profile-by-url.ts
@@ -13,7 +13,7 @@ const execPrm = promisify(exec)
13
incognito = false,
14
}: { profile: string; url: string; incognito: boolean } = JSON.parse(alfredClient.input)
15
16
- const command = `open -na 'Google Chrome' --args ${
+ const command = `open -g -na 'Google Chrome' --args ${
17
incognito ? '--incognito' : ''
} --profile-directory='${profile}' '${url}'`
await execPrm(command)
0 commit comments