mirror of
https://github.com/xvvvyz/tilde.git
synced 2026-03-11 14:44:24 +00:00
update commands
This commit is contained in:
parent
2315da2950
commit
8847c648a0
1 changed files with 20 additions and 27 deletions
47
index.html
47
index.html
|
|
@ -39,28 +39,28 @@
|
|||
|
||||
// prettier-ignore
|
||||
const COMMANDS = new Map([
|
||||
['a', { name: 'Chat', searchTemplate: '?q={}', url: 'https://chatgpt.com' }],
|
||||
['c', { name: 'Cloud', url: 'https://dash.cloudflare.com' }],
|
||||
['d', { name: 'Drive', url: 'https://drive.google.com/drive/u/0/my-drive' }],
|
||||
['a', { name: 'Alphabet', suggestions: ['a/drive', 'a/contacts'], url: 'https://www.google.com' }],
|
||||
['a/drive', { url: 'https://drive.google.com/drive/u/0/my-drive' }],
|
||||
['a/contacts', { url: 'https://contacts.google.com' }],
|
||||
['c', { name: 'Cloudflare', url: 'https://dash.cloudflare.com' }],
|
||||
['d', { name: 'Droplet', url: 'https://cloud.digitalocean.com/projects/50ffcff7-ad65-40e3-af88-3cbc5a38cf99/resources' }],
|
||||
['e', { name: 'Resend', url: 'https://resend.com/emails?time=all&page=1' }],
|
||||
['f', { name: 'Figma', url: 'https://www.figma.com' }],
|
||||
['g', { name: 'Git', searchTemplate: '/search?q={}', suggestions: ['g/copilot', 'g/trending'], url: 'https://github.com' }],
|
||||
['g', { name: 'GitHub', searchTemplate: '/search?q={}', suggestions: ['g/copilot', 'g/trending'], url: 'https://github.com' }],
|
||||
['i', { name: 'Intuit', url: 'https://selfemployed.intuit.com/home' }],
|
||||
['k', { name: 'Khan', url: 'https://www.khanacademy.org' }],
|
||||
['m', { name: 'Mail', searchTemplate: '/u/0/all-mail#keyword={}', url: 'https://mail.proton.me/u/0/inbox' }],
|
||||
['o', { name: 'Ocean', url: 'https://cloud.digitalocean.com/projects/50ffcff7-ad65-40e3-af88-3cbc5a38cf99/resources' }],
|
||||
['p', { name: 'Pass', url: 'https://pass.proton.me/u/0/' }],
|
||||
['o', { name: 'ChatGPT', searchTemplate: '?q={}', url: 'https://chatgpt.com' }],
|
||||
['p', { name: 'Proton', suggestions: ['p/pass', 'p/drive'], url: 'https://mail.proton.me/u/0/inbox' }],
|
||||
['p/drive', { url: 'https://drive.proton.me/u/0' }],
|
||||
['p/pass', { url: 'https://pass.proton.me/u/0' }],
|
||||
['r', { name: 'Reddit', searchTemplate: '/search/?q={}', url: 'https://www.reddit.com' }],
|
||||
['s', { name: 'Data', url: 'https://supabase.com/dashboard/projects' }],
|
||||
['t', { name: 'Tick', suggestions: ['t/inbox', 't/work', 't/habits', 't/focus'], url: 'https://ticktick.com/webapp/#q/today/tasks' }],
|
||||
['t/focus', { url: 'https://ticktick.com/webapp/#focus' }],
|
||||
['t/habits', { url: 'https://ticktick.com/webapp/#q/all/habit' }],
|
||||
['t/inbox', { url: 'https://ticktick.com/webapp/#p/inbox/tasks' }],
|
||||
['t/work', { url: 'https://ticktick.com/webapp/#p/66ec8e538f081710b4e85e52/tasks' }],
|
||||
['s', { name: 'Supabase', url: 'https://supabase.com/dashboard/projects' }],
|
||||
['t', { name: 'TickTick', url: 'https://ticktick.com/webapp/#q/today/tasks' }],
|
||||
['v', { name: 'Vercel', suggestions: ['v0.dev'], url: 'https://vercel.com/dashboard' }],
|
||||
['x', { name: 'Torrent', url: 'https://torrent.xvvvyz.xyz' }],
|
||||
['y', { name: 'Tube', searchTemplate: '/results?search_query={}', url: 'https://www.youtube.com/feed/subscriptions' }],
|
||||
['0', { name: 'local', suggestions: ['0:54323', '0:54324'], url: 'http://localhost:3000' }],
|
||||
['x', { name: 'xvvvyz', suggestions: ['x/jelly', 'x/torrent'], url: 'https://xvvvyz.xyz' }],
|
||||
['x/jelly', { url: 'https://jelly.xvvvyz.xyz' }],
|
||||
['x/torrent', { url: 'https://torrent.xvvvyz.xyz' }],
|
||||
['y', { name: 'YouTube', searchTemplate: '/results?search_query={}', url: 'https://www.youtube.com/feed/subscriptions' }],
|
||||
['0', { name: 'localhost', suggestions: ['0:54323', '0:54324'], url: 'http://localhost:3000' }],
|
||||
['0:54323', { url: 'http://localhost:54323' }],
|
||||
['0:54324', { url: 'http://localhost:54324' }],
|
||||
]);
|
||||
|
|
@ -118,17 +118,10 @@
|
|||
color: var(--color-text);
|
||||
}
|
||||
|
||||
@media (min-width: 40rem) {
|
||||
@media (min-width: 55rem) {
|
||||
.commands {
|
||||
columns: 3;
|
||||
max-width: 30rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 70rem) {
|
||||
.commands {
|
||||
columns: 6;
|
||||
max-width: 60rem;
|
||||
columns: 4;
|
||||
max-width: 45rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue