refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / iterm2 / schemes.md
1 https://iterm2colorschemes.com/
2
3 ```js
4 "wget '" +
5   $$('a[href^="https://raw.githubusercontent.com"')
6     .map(function (a) {
7       if (/\.itermcolors/.test(a.href)) {
8         // a.innerText "Tomorrow Night"
9         return a.href;
10       }
11     })
12     .filter(Boolean)
13     .join("'\nwget '") +
14   "'";
15 ```