From 75579d1bfb3fb2caf4833d7b380b237a8bb121b4 Mon Sep 17 00:00:00 2001 From: cade Date: Thu, 18 Jul 2024 12:00:29 -0700 Subject: [PATCH 1/2] update commands --- index.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 46ca1be..37ce314 100644 --- a/index.html +++ b/index.html @@ -47,7 +47,6 @@ ['g', { name: 'GitHub', searchTemplate: '/search?q={}', url: 'https://github.com' }], ['k', { name: 'Keep', url: 'https://keep.google.com' }], ['n', { name: 'Notion', url: 'https://www.notion.so' }], - ['o', { name: 'Google', searchTemplate: '/search?q={}', suggestions: ['o/travel'], url: 'https://www.google.com' }], ['p', { name: 'Proton', searchTemplate: '/u/0/all-mail#keyword={}', suggestions: ['p/drive'], url: 'https://mail.proton.me/u/0/inbox' }], ['p/drive', { url: 'https://drive.proton.me/u/0/' }], ['r', { name: 'Reddit', searchTemplate: '/search/?q={}', suggestions: ['r/r/selfhosted', 'r/r/dataisbeautiful', 'r/r/fujix', 'r/r/leetcode'], url: 'https://reddit.com' }], @@ -55,7 +54,6 @@ ['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }], ['x', { name: 'xvvvyz', suggestions: ['x/pomo', 'x/torrent'], url: 'https://xvvvyz.xyz' }], ['x/pomo', { url: 'https://pomodoro.xvvvyz.xyz' }], - ['x/proxy', { url: 'https://proxy.xvvvyz.xyz' }], ['x/torrent', { url: 'https://torrent.xvvvyz.xyz' }], ['y', { name: 'YouTube', searchTemplate: '/results?search_query={}', url: 'https://youtube.com/feed/subscriptions' }], ['0', { name: 'local', suggestions: ['0:54323', '0:54324'], url: 'http://localhost:3000' }], @@ -121,10 +119,10 @@ } } - @media (min-width: 900px) { + @media (min-width: 1000px) { .commands { - columns: 4; - max-width: 45rem; + columns: 5; + max-width: 55rem; } } From 8ee94bc1de028f631272b529508eaf6dc46a8c93 Mon Sep 17 00:00:00 2001 From: cade Date: Tue, 23 Jul 2024 14:42:37 -0700 Subject: [PATCH 2/2] add additional llms --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 37ce314..a667cd5 100644 --- a/index.html +++ b/index.html @@ -39,7 +39,9 @@ // prettier-ignore const COMMANDS = new Map([ - ['a', { name: 'Gemini', url: 'https://gemini.google.com/app' }], + ['a', { name: 'Chat', suggestions: ['a/claude', 'a/gemini'], url: 'https://chatgpt.com' }], + ['a/claude', { url: 'https://claude.ai/new' }], + ['a/gemini', { url: 'https://gemini.google.com/app' }], ['b', { name: 'Dribbble', searchTemplate: '/search/{}', url: 'https://dribbble.com/shots/recent' }], ['c', { name: 'Calendar', url: 'https://calendar.google.com' }], ['d', { name: 'Drive', url: 'https://drive.google.com/drive/u/0/my-drive' }],