Redo gitlab and github, remove translate
This commit is contained in:
parent
3b46e6e127
commit
d8fe1bfecb
2
CNAME
2
CNAME
|
@ -1 +1 @@
|
|||
tilde.xvvvyz.xyz
|
||||
bulbasaur-sumarac-0170794732a10637d207e362e9dd4e2a90e7039fbff45.gitlab.io
|
||||
|
|
12
README.md
12
README.md
|
@ -1,13 +1,12 @@
|
|||
# Tilde
|
||||
# Bulbasaur
|
||||
|
||||
Inspired by [r/startpages](https://www.reddit.com/r/startpages)—Tilde is
|
||||
the browser homepage for pro web surfers.
|
||||
Bubasaur is my fork of [Tilde](https://github.com/xvvvyz/tilde)
|
||||
|
||||
## Basic Usage
|
||||
|
||||
To go to a site, type the corresponding key and press return. e.g:
|
||||
|
||||
- `g` will redirect you to [github.com](https://github.com)
|
||||
- `g` will redirect you to [gitlab.com](https://gitlab.com)
|
||||
|
||||
To search a site, type a space after the site’s key followed by your
|
||||
query. e.g:
|
||||
|
@ -15,11 +14,6 @@ query. e.g:
|
|||
- `y kittens` will
|
||||
[search YouTube for kittens](https://www.youtube.com/results?search_query=kittens)
|
||||
|
||||
A DuckDuckGo search will be triggered if your input doesn’t match a key.
|
||||
e.g:
|
||||
|
||||
- `google` will [search DuckDuckGo for google](https://duckduckgo.com/?q=google)
|
||||
|
||||
To go to a specific path on a site, type the path after the site’s key.
|
||||
e.g:
|
||||
|
||||
|
|
19
index.html
19
index.html
|
@ -39,8 +39,22 @@
|
|||
|
||||
const COMMANDS = new Map([
|
||||
['a', { name: 'Gemini', url: 'https://gemini.google.com/app' }],
|
||||
['h', { name: 'GitHub', url: 'https://github.com/jorrmungandrr' }],
|
||||
['g', { name: 'GitLab', url: 'https://gitlab.com/sumarac' }],
|
||||
[
|
||||
'h',
|
||||
{
|
||||
name: 'GitHub',
|
||||
url: 'https://github.com/',
|
||||
searchTemplate: '/{}'
|
||||
}
|
||||
],
|
||||
[
|
||||
'g',
|
||||
{
|
||||
name: 'GitLab',
|
||||
url: 'https://gitlab.com/',
|
||||
searchTemplate: '/{}'
|
||||
}
|
||||
],
|
||||
['k', { name: 'Keep', url: 'https://keep.google.com' }],
|
||||
['m', { name: 'Mail', url: 'https://mail.proton.me/u/0/inbox' }],
|
||||
[
|
||||
|
@ -66,7 +80,6 @@
|
|||
url: 'https://reddit.com',
|
||||
},
|
||||
],
|
||||
['t', { name: 'Translate', url: 'https://www.deepl.com/translator' }],
|
||||
[
|
||||
'y',
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue