From 18c0f5075f291acb06e7adc944c87d1d9637b02c Mon Sep 17 00:00:00 2001 From: scbj Date: Tue, 11 Nov 2025 13:20:55 +0100 Subject: [PATCH] (bashrc) added alias for colored `ip` command --- bashrc/.bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc/.bashrc b/bashrc/.bashrc index b1fb63a..085471b 100644 --- a/bashrc/.bashrc +++ b/bashrc/.bashrc @@ -52,6 +52,10 @@ alias bdiff='diff -uw --color=always' alias sbash='source ~/.bashrc' +if $(which ip &>/dev/null); then + alias ip='ip -c' +fi + # because `libreWolf` is ambiguous for tab completion if $(which librewolf &>/dev/null); then alias firefox='librewolf'