Just my dotfiles.
# Via SSH
git clone [email protected]:AymericNoel/dotfiles.git ~/dotfiles
# Or via HTTP
git clone https://github.com/AymericNoel/dotfiles.git ~/dotfilesYou can find all these commands here.
xset r rate 175 40
2. Direnv
Allow to load environment variables when cd in a repository. Just make a .envrc with your bash script.
3. Starship
Allow to custom the terminal features and appareances.
4. FZF
It's an interactive Unix filter for command-line that can be used with any list; files, command history, processes, hostnames, bookmarks, git commits, etc.
5. The fuck
Correct user input and allow to run it again properly.
6. Bat
Supports syntax highlighting for a large number of programming and markup languages. It's a better cat.
7. Zoxide
One of the best. ALlow you to jump in directories.
8. Fx
Json viewer that allow to open/close nodes with keyboard or mouse.
9. TLDR
It's a man but simplier and prettier.
10. Dive
Tool for exploring docker images, layer by layer.
11. DUF
A better df program.
12. ASDF
Manage each of your project runtimes with a single CLI tool and command interface. Compatible with .nvmrc etc...
Alternatively, you can download nvm and tfenv.
13. Sublime text
Just a text editor.
14. Checkov
Checkov uses a common command line interface to manage and analyze infrastructure as code (IaC) scan results across platforms such as Terraform, CloudFormation, Kubernetes, Helm, ARM Templates and Serverless framework.
15. Minikube
Local Kubernetes cluster. You can alse use k3d or k9s.
16. Tmux
Terminal multiplexer.
17. Scrcpy
To share mobile screen in live mode on computer.
18. Htop
Modern top program. Can be replaced by gtop.
19. K6
Allow to do performance/load testing. You can also use gatling or locust.
20. Gdu
Graphical disk usage in cli.
21. Terminator
Useful tool in order to have specifics terminal functionnalities like splitting.
22. ncdu
Graphical du.
23. Meld
Useful to compare two files with a graphical window.
24. Pwgen
Useful tool to generate strong password in a ~random way.
25. Xclip
Useful in order to copy/paste stdout/stderr to clipboard.
Can be used simply with those alias:
alias copy='xclip -selection clipboard'alias paste='xclip -selection clipboard -o'