FZF
history | fzf~ search through command historycd $(find . -type d | fzf)~ search and change to a directorykill -9 $(ps aux | fzf | awk '{print $2}')~ select and kill a processgit checkout $(git branch | fzf)~ switch between git branchesgit log --oneline | fzf~ search through git commit historyvim $(fzf)~ open file in vim (enhanced with fzf integration)vim $(find ~/.* -type f | fzf)~ find and edit configuration files in home directorysystemctl status $(systemctl | grep service | fzf | awk '{print $1}')~ select and view the status of a systemd servicempv $(find ~/Music -type f | fzf)~ find and play a music file with mpvdocker logs $(docker ps | fzf | awk '{print $1}')~ select a running docker container and view its logsssh $(grep Host ~/.ssh/config | awk '{print $2}' | fzf)~ select and connect to an SSH host defined in ~/.ssh/config