From ead7ac906d2c227f1e28bd27125335ccb03227b6 Mon Sep 17 00:00:00 2001 From: cade Date: Tue, 18 Jun 2024 12:34:57 -0700 Subject: [PATCH] update commands and disable prettier --- index.html | 72 +++++++----------------------------------------------- 1 file changed, 9 insertions(+), 63 deletions(-) diff --git a/index.html b/index.html index 0e7add8..0b98c61 100644 --- a/index.html +++ b/index.html @@ -37,78 +37,24 @@ suggestionLimit: 4, }; + // prettier-ignore const COMMANDS = new Map([ - ['a', { name: 'Chat', url: 'https://chat.openai.com' }], + ['a', { name: 'Chat', url: 'https://gemini.google.com/app' }], ['b', { name: 'Dribbble', 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', - }, - ], + ['d', { name: 'Drive', url: 'https://drive.google.com/drive/u/0/my-drive' }], ['f', { name: 'Figma', url: 'https://www.figma.com' }], ['g', { name: 'GitHub', url: 'https://github.com' }], ['k', { name: 'Keep', url: 'https://keep.google.com' }], ['n', { name: 'Notion', url: 'https://www.notion.so' }], - [ - 'p', - { - name: 'Proton', - suggestions: ['drive.proton.me/u/1/'], - url: 'https://mail.proton.me/u/1/inbox', - }, - ], - [ - 'r', - { - name: 'Reddit', - suggestions: [ - 'r/r/selfhosted', - 'r/r/dataisbeautiful', - 'r/r/fujix', - 'r/r/leetcode', - ], - url: 'https://reddit.com', - }, - ], + ['p', { name: 'Proton', suggestions: ['drive.proton.me/u/1/'], url: 'https://mail.proton.me/u/1/inbox' }], + ['r', { name: 'Reddit', suggestions: ['r/r/selfhosted', 'r/r/dataisbeautiful', 'r/r/fujix', 'r/r/leetcode'], url: 'https://reddit.com' }], ['s', { name: 'Supabase', url: 'https://supabase.com/dashboard/projects' }], - [ - 'u', - { - name: 'Unsplash', - searchTemplate: '/s/photos/{}', - url: 'https://unsplash.com', - }, - ], + ['u', { name: 'Unsplash', searchTemplate: '/s/photos/{}', url: 'https://unsplash.com' }], ['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }], - [ - 'x', - { - name: 'xvvvyz', - searchTemplate: 'https://{}.xvvvyz.xyz', - suggestions: ['x pomodoro', 'x jelly', 'x torrent', 'x proxy'], - url: 'https://xvvvyz.xyz', - }, - ], - [ - 'y', - { - name: 'YouTube', - searchTemplate: '/results?search_query={}', - url: 'https://youtube.com/feed/subscriptions', - }, - ], - [ - '0', - { - name: 'localhost', - searchTemplate: ':{}', - suggestions: ['0 54323', '0 54324'], - url: 'http://localhost:3000', - }, - ], + ['x', { name: 'xvvvyz', searchTemplate: 'https://{}.xvvvyz.xyz', suggestions: ['x pomodoro', 'x jelly', 'x torrent', 'x proxy'], url: 'https://xvvvyz.xyz' }], + ['y', { name: 'YouTube', searchTemplate: '/results?search_query={}', url: 'https://youtube.com/feed/subscriptions' }], + ['0', { name: 'localhost', searchTemplate: ':{}', suggestions: ['0 54323', '0 54324'], url: 'http://localhost:3000' }], ]);