

yazi looks really sweet (whereas ranger never quite clicked for me personally)
If you’re interested in (co-)moderating any of the communities created by me, you’re welcome to message me.
I also have the account @Novocirab@jlai.lu. Furthermore, I operate the bot account @daswetter@feddit.org, which posts in !daswetter@feddit.org.


yazi looks really sweet (whereas ranger never quite clicked for me personally)


tldr (aka tealdeer) for quick command usage examples
bat (aka batcat) for most uses of less/more/cat
difft (aka difftastic) which I’ve just learnt about here/here.
Use in git diff by running $ git config --global diff.external difft
btm (aka bottom) for viewing processes & system status
This code in my .bashrc for colored man output:
# Colors for Manpages
function _colorman() {
env \
LESS_TERMCAP_mb=$'\e[1;35m' \
LESS_TERMCAP_md=$'\e[1;34m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[7;40m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[1;33m' \
LESS_TERMCAP_mr=$(tput rev) \
LESS_TERMCAP_mh=$(tput dim) \
LESS_TERMCAP_ZN=$(tput ssubm) \
LESS_TERMCAP_ZV=$(tput rsubm) \
LESS_TERMCAP_ZO=$(tput ssupm) \
LESS_TERMCAP_ZW=$(tput rsupm) \
GROFF_NO_SGR=1 \
"$@"
}
alias man="LANG=C _colorman man"
function perldoc() { command perldoc -n less "$@" |man -l -; }
(Not by me, but I forgot from whom I got it.)
Year of the Windows desktop here we go!
(credit)