Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
colorize outputs ip ping dig traceroute whois netstat `ps…
Browse files Browse the repository at this point in the history
…` `uptime` `pv` `ss` `df` `findmnt` `lsblk`
  • Loading branch information
Skarlett authored and Skarlett committed Aug 19, 2023
1 parent 5e96a32 commit ea0ff35
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions home-manager/flagship.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
openvpn
obsidian
anydesk
grc

lldb
glfw
Expand Down
19 changes: 18 additions & 1 deletion home-manager/modules/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,29 @@
$argv > /dev/null 2>&1 &
disown
end
export MANPAGER="less -R --use-color -Dd+r -Du+b"
'';

shellAliases =
{
ip="ip --color=auto";
ip="grc ip --color=auto";
ping="grc ping";
traceroute="grc traceroute";
dig="grc dig";
tcpdump="grc tcpdump";
whois="grc whois";
sysctl="grc sysctl";
netstat="grc netstat";
ps="grc ps";
uptime="grc uptime";
pv="grc pv";
ss="grc ss";
df="grc df";
findmnt="grc findmnt";
lsblk="grc lsblk";
ls="lsd --color always";

l="ls -la";
la="ls -a";
lt="ls -tree";
Expand Down

0 comments on commit ea0ff35

Please sign in to comment.