This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

✨ : update tools demo

Julien WITTOUCK (Jun 18, 2026, 8:03 AM +0200) a28a424d 98b3d1a0

+24 -13
+19 -8
demo/02-outils/demo.sh
··· 1 - #!/bin/bash 2 - gum style --border double --padding "1 2" --margin "1" "Des outils modernes" 1 + #!/usr/bin/env fish 2 + mise env -s fish | source 3 3 4 - gum style --foreground 212 "# alias ls='lsd' -- couleurs et icônes" 5 - lsd -la 4 + set -l g (set_color a6d189) 5 + set -l b (set_color 8caaee) 6 + set -l s '#8caaee' 7 + set -l n (set_color normal) 8 + 9 + gum style --foreground "$s" --border double --padding "1 2" --margin "1" "Des outils modernes" 10 + gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 11 + 12 + echo "$g❯$b batcat --number -pp ~/.gitconfig$n" 13 + batcat --number -pp ~/.gitconfig 14 + gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 6 15 7 16 echo 8 - gum style --foreground 212 "# alias cat='batcat' -- coloration syntaxique et numéros de lignes" 9 - batcat --number -pp ~/.gitconfig 17 + echo "$g❯$b lsd -la$n" 18 + lsd -la 19 + gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 10 20 11 21 echo 12 - gum style --foreground 212 "# alias cd='z' -- navigation intelligente" 22 + echo "$g❯$b zoxide query -l | head -10$n" 13 23 zoxide query -l | head -10 24 + gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 14 25 15 26 echo 16 - gum style --foreground 212 "# alias find='fd' -- recherche rapide et intuitive" 27 + echo "$g❯$b fdfind --type f '.splashboard'$n" 17 28 fdfind --type f '.splashboard'
+5 -5
pimp-my-shell.md
··· 38 38 <!-- end_slide --> 39 39 40 40 ```bash +exec_replace 41 - cargo run -q --manifest-path big-text/Cargo.toml -- -q "Outils" 2>/dev/null 41 + gum style --padding "1 4" --border none "📄 📂 🚀 🔍" 42 42 ``` 43 43 44 44 # 🐚 Mon shell est superchargé avec des outils boostés 45 45 46 - * `cat` → **batcat** — coloration syntaxique, numéros de lignes 47 - * `ls` → **lsd** — couleurs, icônes par type de fichier 48 - * `cd` → **zoxide** — navigation intelligente par fréquence 49 - * `find` → **fd** — recherche de fichiers rapide et intuitive 46 + * 📄 `cat` → `batcat` : coloration syntaxique, numéros de lignes 47 + * 📂 `ls` → `lsd` : couleurs, icônes par type de fichier 48 + * 🚀 `cd` → `zoxide` : navigation intelligente par fréquence 49 + * 🔍 `find` → `fd` : recherche de fichiers rapide et intuitive 50 50 51 51 <!-- end_slide --> 52 52