Skip to content

Commit 1fbb877

Browse files
fix(finicky): use Chrome profile names instead of directory paths
Finicky was warning on every profile-routed URL because the config used directory paths (Default, Profile 1) instead of display names (Work, Josh). This caused extra profile resolution on each URL open. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8a3dcd0 commit 1fbb877

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

home/.finicky.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ let personalChromeProfile = 'Profile 3';
1010
let workChromeProfile = 'Profile 1';
1111

1212
if (hostname === 'josh-nichols-K9DJ2M7WK6') {
13-
// New work machine (rehome 2026-03-24): Default=work, Profile 1=personal
14-
workChromeProfile = 'Default';
15-
personalChromeProfile = 'Profile 1';
13+
// New work machine (rehome 2026-03-24): Work profile is default, Josh is personal
14+
workChromeProfile = 'Work';
15+
personalChromeProfile = 'Josh';
1616
}
1717

1818
// Slack workspace subdomain to team ID mapping

0 commit comments

Comments
 (0)