more command updates

This commit is contained in:
cade 2023-04-26 09:56:03 -07:00
parent 04845cfcab
commit b852e883c5
No known key found for this signature in database
GPG key ID: 6AC5A902158265D0

View file

@ -42,19 +42,17 @@
};
const COMMANDS = new Map([
['a', { name: 'Chat', url: 'https://chat.openai.com' }],
['b', { name: 'Dribbble', url: 'https://dribbble.com/shots/popular' }],
['c', { name: 'Calendar', url: 'https://calendar.google.com' }],
['d', { name: 'Drive', url: 'https://drive.google.com' }],
['f', { name: 'Figma', url: 'https://www.figma.com/files/recent' }],
['g', { name: 'GitHub', url: 'https://github.com' }],
['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' }],
['l', { name: 'Translate', url: 'https://translate.google.com' }],
['m', { name: 'Mail', url: 'https://mail.proton.me/u/0/inbox' }],
['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',
{
@ -73,15 +71,16 @@
's',
{
name: 'Slack',
suggestions: ['s/sn', 's/ayp'],
suggestions: ['s/ayp', 's/sn'],
url: 'https://app.slack.com',
},
],
['s/sn', { command: 's/client/T09M5UWSV' }],
['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' }],
['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }],
['w', { name: 'Twitter', url: 'https://twitter.com/home' }],
[
'y',
{
@ -99,6 +98,7 @@
url: 'http://localhost:3000',
},
],
['?', { name: 'Help', url: 'https://github.com/xvvvyz/tilde' }],
]);
</script>