This repository has no description
0

Configure Feed

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

✨ : update demo

Julien WITTOUCK (Jun 18, 2026, 3:32 PM +0200) 6edd3b7d 95eb716e

+34 -8
+8
demo/02-outils/aliases.fish
··· 1 + alias cat 'batcat --plain' 2 + alias cd zoxide 3 + alias find fdfind 4 + alias ls lsd 5 + alias l 'lsd -l' 6 + alias la 'lsd -a' 7 + alias lla 'lsd -la' 8 + alias lt 'lsd --tree'
+15 -8
demo/02-outils/demo.sh
··· 7 7 set -l n (set_color normal) 8 8 9 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 10 + gum spin --spinner.foreground "$s" --spinner dot --title " " -- fish -c read 11 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 12 + echo "$g❯$b batcat ~/.gitconfig$n" 13 + batcat --number -pp -l toml dot_gitconfig 14 + gum spin --spinner.foreground "$s" --spinner dot --title " " -- fish -c read 15 15 16 16 echo 17 17 echo "$g❯$b lsd -la$n" 18 18 lsd -la 19 - gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 19 + echo "$g❯$b lsd --tree$n" 20 + lsd --tree 21 + gum spin --spinner.foreground "$s" --spinner dot --title " " -- fish -c read 20 22 21 23 echo 22 24 echo "$g❯$b zoxide query -l | head -10$n" 23 25 zoxide query -l | head -10 24 - gum spin --spinner.foreground "$s" --spinner dot --title " " sleep 3 26 + gum spin --spinner.foreground "$s" --spinner dot --title " " -- fish -c read 27 + 28 + echo 29 + echo "$g❯$b fdfind codekaio $HOME$n" 30 + fdfind codekaio $HOME 31 + gum spin --spinner.foreground "$s" --spinner dot --title " " -- fish -c read 25 32 26 33 echo 27 - echo "$g❯$b fdfind --type f '.splashboard'$n" 28 - fdfind --type f '.splashboard' 34 + echo "$g❯$b batcat -pp -l fish aliases.fish$n" 35 + batcat -pp -l fish aliases.fish
+11
demo/02-outils/dot_gitconfig
··· 1 + [user] 2 + email = julien@codeka.io 3 + name = Julien WITTOUCK 4 + signingkey = /home/jwittouck/.ssh/id_ed25519.pub 5 + [core] 6 + editor = vim 7 + hooksPath = /home/jwittouck/.config/git/hooks 8 + [init] 9 + defaultBranch = main 10 + [remote "origin"] 11 + prune = true