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
3e69cd25a7
commit
7392c9d1bb
1 changed files with 10 additions and 8 deletions
18
index.html
18
index.html
|
|
@ -44,31 +44,33 @@
|
|||
commandSearchDelimiter: ' ',
|
||||
defaultSearchTemplate: 'https://duckduckgo.com/?q={}',
|
||||
openLinksInNewTab: true,
|
||||
suggestionLimit: 4,
|
||||
suggestionLimit: 5,
|
||||
};
|
||||
|
||||
// prettier-ignore
|
||||
const COMMANDS = new Map([
|
||||
['a', { name: 'AI', searchTemplate: '/?temporary-chat=true&q={}', suggestions: ['a/copilot', 'a/deepseek', 'a/gemini'], url: 'https://chatgpt.com/?temporary-chat=true' }],
|
||||
['a', { name: 'AI', searchTemplate: '/?temporary-chat=true&q={}', suggestions: ['a/copilot', 'a/deepseek', 'a/gemini', 'a/grok', 'a/perplexity'], url: 'https://chatgpt.com/?temporary-chat=true' }],
|
||||
['a/copilot', { url: 'https://github.com/copilot' }],
|
||||
['a/deepseek', { url: 'https://chat.deepseek.com' }],
|
||||
['a/gemini', { url: 'https://gemini.google.com' }],
|
||||
['a/grok', { url: 'https://grok.com' }],
|
||||
['a/perplexity', { url: 'https://www.perplexity.ai' }],
|
||||
['c', { name: 'Cloudflare', url: 'https://dash.cloudflare.com' }],
|
||||
['d', { name: 'Drive', url: 'https://drive.google.com/drive/u/0/my-drive' }],
|
||||
['f', { name: 'Figma', url: 'https://www.figma.com/files/team/1313048942910040223/drafts' }],
|
||||
['d', { name: 'Discord', url: 'https://discord.com/channels/@me' }],
|
||||
['f', { name: 'Finances', url: 'https://docs.google.com/spreadsheets/d/1sjSOdlKaE-BcraiEDjqfakCXietLTSUY1ny6gQTj-oQ/edit' }],
|
||||
['g', { name: 'GitHub', searchTemplate: '/search?q={}', suggestions: ['g/trending'], url: 'https://github.com' }],
|
||||
['h', { name: 'Hetzner', url: 'https://console.hetzner.cloud/projects' }],
|
||||
['i', { name: 'Instant', url: 'https://www.instantdb.com/dash' }],
|
||||
['p', { name: 'Proton', suggestions: ['p/pass', 'p/drive', 'p/cal'], url: 'https://mail.proton.me/u/0/inbox' }],
|
||||
['p/cal', { url: 'https://calendar.proton.me/u/0' }],
|
||||
['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' }],
|
||||
['s', { name: 'Supabase', url: 'https://supabase.com/dashboard/projects' }],
|
||||
['t', { name: 'TickTick', url: 'https://ticktick.com/webapp/#q/today/tasks' }],
|
||||
['v', { name: 'Vercel', url: 'https://vercel.com/dashboard' }],
|
||||
['x', { name: 'xvvvyz', suggestions: ['x/seerr', 'x/radarr', 'x/sonarr', 'x/torrent'], url: 'https://xvvvyz.xyz' }],
|
||||
['x/seerr', { url: 'https://jellyseerr.xvvvyz.xyz' }],
|
||||
['x', { name: 'xvvvyz', suggestions: ['x/seerr', 'x/torrent', 'x/radarr', 'x/sonarr', 'x/bazarr'], url: 'https://xvvvyz.xyz' }],
|
||||
['x/bazarr', { url: 'https://bazarr.xvvvyz.xyz' }],
|
||||
['x/radarr', { url: 'https://radarr.xvvvyz.xyz' }],
|
||||
['x/seerr', { url: 'https://jellyseerr.xvvvyz.xyz' }],
|
||||
['x/sonarr', { url: 'https://sonarr.xvvvyz.xyz' }],
|
||||
['x/torrent', { url: 'https://torrent.xvvvyz.xyz' }],
|
||||
['y', { name: 'YouTube', searchTemplate: '/results?search_query={}', url: 'https://www.youtube.com/feed/subscriptions' }],
|
||||
|
|
|
|||
Loading…
Reference in a new issue