Skip to content

Commit c43c4b3

Browse files
committed
feat: refactor modern *nix tools presentation
1 parent bc333d4 commit c43c4b3

32 files changed

+287
-290
lines changed

README.md

Lines changed: 240 additions & 290 deletions
Large diffs are not rendered by default.

links.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"await.gif": "https://raw.githubusercontent.com/slavaGanzin/await/main/demo/1.gif",
3+
"bat.png": "https://camo.githubusercontent.com/be35879c510cea3111901d01e4af4d7e8f38fbb7c56a49ca711f07edf1b2d6fd/68747470733a2f2f696d6775722e636f6d2f724773646e44652e706e67",
4+
"bottom.gif": "https://raw.githubusercontent.com/ClementTsang/bottom/master/assets/demo.gif",
5+
"broot.png": "https://raw.githubusercontent.com/Canop/broot/master/website/docs/img/20200629-overview.png",
6+
"cheat.png": "https://static.haydenjames.io/wp-content/uploads/2020/09/cheat-command-line-github-868x478.png",
7+
"choose.png": "https://asciinema.org/a/315932.png",
8+
"curlie.png": "https://raw.githubusercontent.com/rs/curlie/master/doc/get.png",
9+
"delta.png": "https://user-images.githubusercontent.com/52205/86275526-76792100-bba1-11ea-9e78-6be9baa80b29.png",
10+
"dog.png": "https://raw.githubusercontent.com/ogham/dog/master/dog-screenshot.png",
11+
"doggo.png": "https://raw.githubusercontent.com/mr-karan/doggo/main/www/static/doggo.png",
12+
"duf.png": "https://raw.githubusercontent.com/muesli/duf/master/duf.png",
13+
"dust.png": "https://user-images.githubusercontent.com/200613/90223722-e0c2e980-de0e-11ea-8c75-343273fed6f3.png",
14+
"eza.png": "https://raw.githubusercontent.com/eza-community/eza/main/docs/images/screenshots.png",
15+
"fd.svg": "https://raw.githubusercontent.com/sharkdp/fd/master/doc/screencast.svg",
16+
"fzf.png": "https://raw.githubusercontent.com/junegunn/i/master/fzf-preview.png",
17+
"glances.png": "https://raw.githubusercontent.com/nicolargo/glances/develop/docs/_static/glances-summary.png",
18+
"gping.gif": "https://raw.githubusercontent.com/orf/gping/master/images/readme-example.gif",
19+
"gtop.gif": "https://raw.githubusercontent.com/aksakalli/gtop/master/img/demo.gif",
20+
"httpie.gif": "https://raw.githubusercontent.com/httpie/httpie/master/docs/httpie-animation.gif",
21+
"hyperfine.gif": "https://camo.githubusercontent.com/ed09194016a09ea928cb15891075ec0babc0033e785dfbdb14803913a7fb478b/68747470733a2f2f692e696d6775722e636f6d2f7a31394f5978452e676966",
22+
"jq.png": "https://blog.noenieto.com/media/gnome-shell-screenshot-VMABUZ.png",
23+
"lsd.png": "https://raw.githubusercontent.com/Peltoche/lsd/assets/screen_lsd.png",
24+
"mcfly.png": "https://raw.githubusercontent.com/cantino/mcfly/master/docs/screenshot.png",
25+
"procs.png": "https://user-images.githubusercontent.com/200613/90223676-c8eb6580-de0e-11ea-8e3e-fea30f173aab.png",
26+
"ripgrep.gif": "https://user-images.githubusercontent.com/200613/90223748-ecaeab80-de0e-11ea-9140-ac9219f5747c.gif",
27+
"sd.png": "https://rest-reminder.easiestsoft.com/web/command-line-search-replace-string-in-file/img/regular-expression-replace-string-in-file.png",
28+
"tldr.png": "https://raw.githubusercontent.com/tldr-pages/tldr/main/images/tldr-dark.png",
29+
"xh.gif": "https://raw.githubusercontent.com/ducaale/xh/master/assets/xh-demo.gif",
30+
"zoxide.riff": "https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/contrib/tutorial.webp"
31+
}

populate.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
mkdir -p ./screenshots
4+
jq -r 'to_entries[] | .key + " " + .value' ./links.json | while read -r key url; do
5+
if [ -f "$key" ]; then
6+
echo "$key exists"
7+
continue
8+
fi
9+
curl -fsSL "$url" -o "./screenshots/$key"
10+
echo "* downloaded ./screenshots/$key"
11+
done
12+
13+
# Note: use
14+
# echo $(file screenshots/IMAGE_FILE_NAME | awk -F' ' '{print $2}' | tr '[:upper:]' '[:lower:]')
15+
# to get the extension name

screenshots/await.gif

967 KB
Loading

screenshots/bat.png

37.9 KB
Loading

screenshots/bottom.gif

2.04 MB
Loading

screenshots/broot.png

44 KB
Loading

screenshots/cheat.png

73.9 KB
Loading

screenshots/choose.png

18.1 KB
Loading

screenshots/curlie.png

223 KB
Loading

0 commit comments

Comments
 (0)