mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-27 05:26:58 +00:00
16 lines
303 B
Markdown
16 lines
303 B
Markdown
https://iterm2colorschemes.com/
|
|
|
|
```js
|
|
"wget '" +
|
|
$$('a[href^="https://raw.githubusercontent.com"')
|
|
.map(function (a) {
|
|
if (/\.itermcolors/.test(a.href)) {
|
|
// a.innerText "Tomorrow Night"
|
|
return a.href;
|
|
}
|
|
})
|
|
.filter(Boolean)
|
|
.join("'\nwget '") +
|
|
"'";
|
|
```
|