more command updates

This commit is contained in:
cade
2023-04-26 10:04:04 -07:00
parent 04845cfcab
commit b852e883c5
+7 -7
View File
@@ -42,19 +42,17 @@
}; };
const COMMANDS = new Map([ const COMMANDS = new Map([
['a', { name: 'Chat', url: 'https://chat.openai.com' }],
['b', { name: 'Dribbble', url: 'https://dribbble.com/shots/popular' }], ['b', { name: 'Dribbble', url: 'https://dribbble.com/shots/popular' }],
['c', { name: 'Calendar', url: 'https://calendar.google.com' }], ['c', { name: 'Calendar', url: 'https://calendar.google.com' }],
['d', { name: 'Drive', url: 'https://drive.google.com' }], ['d', { name: 'Drive', url: 'https://drive.google.com' }],
['f', { name: 'Figma', url: 'https://www.figma.com/files/recent' }], ['f', { name: 'Figma', url: 'https://www.figma.com/files/recent' }],
['g', { name: 'GitHub', url: 'https://github.com' }], ['g', { name: 'GitHub', url: 'https://github.com' }],
['h', { name: 'Hypem', url: 'https://hypem.com/popular' }], ['h', { name: 'Hypem', url: 'https://hypem.com/popular' }],
['i', { name: 'ChatGPT', url: 'https://chat.openai.com' }], ['i', { name: 'Discord', url: 'https://discord.com/channels/@me' }],
['k', { name: 'Keep', url: 'https://keep.google.com' }], ['k', { name: 'Keep', url: 'https://keep.google.com' }],
['l', { name: 'Translate', url: 'https://translate.google.com' }],
['m', { name: 'Mail', url: 'https://mail.proton.me/u/0/inbox' }], ['m', { name: 'Mail', url: 'https://mail.proton.me/u/0/inbox' }],
['n', { name: 'Notion', url: 'https://www.notion.so' }], ['n', { name: 'Notion', url: 'https://www.notion.so' }],
['o', { name: 'Discord', url: 'https://discord.com/channels/@me' }],
['p', { name: 'Products', url: 'https://www.producthunt.com' }],
[ [
'r', 'r',
{ {
@@ -73,15 +71,16 @@
's', 's',
{ {
name: 'Slack', name: 'Slack',
suggestions: ['s/sn', 's/ayp'], suggestions: ['s/ayp', 's/sn'],
url: 'https://app.slack.com', url: 'https://app.slack.com',
}, },
], ],
['s/sn', { command: 's/client/T09M5UWSV' }],
['s/ayp', { command: 's/client/T03VB9LJ0AF' }], ['s/ayp', { command: 's/client/T03VB9LJ0AF' }],
['t', { name: 'Twitter', url: 'https://twitter.com/home' }], ['s/sn', { command: 's/client/T09M5UWSV' }],
['t', { name: 'Translate', url: 'https://translate.google.com' }],
['u', { name: 'Supabase', url: 'https://app.supabase.com/projects' }], ['u', { name: 'Supabase', url: 'https://app.supabase.com/projects' }],
['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }], ['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }],
['w', { name: 'Twitter', url: 'https://twitter.com/home' }],
[ [
'y', 'y',
{ {
@@ -99,6 +98,7 @@
url: 'http://localhost:3000', url: 'http://localhost:3000',
}, },
], ],
['?', { name: 'Help', url: 'https://github.com/xvvvyz/tilde' }],
]); ]);
</script> </script>