From 15b2d798c907b7a0a6beb1fe84e6ec66960a37ea Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Tue, 26 Oct 2021 21:17:27 -0700 Subject: [PATCH] zsh: aliases - l now means ls and light means smart plug --- .zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 10952e9..71482e1 100644 --- a/.zshrc +++ b/.zshrc @@ -143,10 +143,11 @@ # smart plug things SMART_PLUG_IP='192.168.1.250' - alias l='tplink_smartplug.py -t $SMART_PLUG_IP -c' + alias light='tplink_smartplug.py -t $SMART_PLUG_IP -c' # Common ls aliases alias \ + l=ls \ la='ls -ah' \ ll='ls -lh' \ lla='ls -lah' \