Readd htop and note naming convention

master
Oystein Kristoffer Tveit 2021-12-22 01:26:35 +01:00
parent a8cbca3906
commit 49157d618d
1 changed files with 7 additions and 0 deletions

View File

@ -59,6 +59,12 @@ in rec {
# Replacing all of coreutils with rust, lol
"System Tool Replacements" = {
# Convention: if replaced tool is useful in some situations, let it be available
# as its own command with its first character doubled.
#
# Example: cp -> ccp
cd = "z";
ccp = "${coreutils}/bin/cp";
@ -69,6 +75,7 @@ in rec {
cat = "${bat}/bin/bat";
htop = "${bottom}/bin/btm";
hhtop = "${htop}/bin/htop";
# This is potentially dangerous, as procs flags are totally different
ps = "${procs}/bin/procs";