zsh: babe, wake up! new alias just dropped!

This commit is contained in:
PowerUser64 2021-10-18 01:25:00 -07:00
parent 3d51d02379
commit 0889ecdf39

11
.zshrc
View file

@ -121,20 +121,23 @@
# lists all open ports, along with some other info
alias ls-ports='netstat -tulpn'
# list all disks and their mount points
alias mnt="mount | awk -F' ' '{ printf \"%s\t%s\n\",\$1,\$3; }' | column -t | grep -E '^/dev/' | sort"
# backs up list of packages
alias packback='comm -23 <(paru -Qqett | sort) <(paru -Qqg base -g base-devel | sort | uniq) > ~/pkglist.txt'
# smart plug things
SMART_PLUG_IP='192.168.1.250'
alias l='tplink_smartplug.py -t $SMART_PLUG_IP -c'
# Common ls aliases
alias \
la='ls -ah' \
ll='ls -lh' \
lla='ls -lah' \
# find pretty much any file, quickly
alias fds='fd --hidden --exclude /run'