added commands to arsenal of tools

This commit is contained in:
tomit4 2022-06-08 16:21:34 -07:00
parent 73417f4c65
commit 97e7bab26c
2 changed files with 7 additions and 1 deletions

View file

@ -36,7 +36,9 @@ alias ls="exa --icons"
alias li="exa -1 --icons"
alias ll="exa -lih --icons"
alias {lsdir,lsd}="ls -t -1" # list only the directories
alias lshw="doas lshw -short" # list hardware
alias lshw="doas lshw -short | less" # list hardware
alias {hw,hwinfo}="hwinfo | less" # extensive info on hardware devices
alias dmid="doas dmidecode | less"
alias of="onefetch -o yaml | yq -C"
alias mkdir='mkdir -pv'
alias {ex,esc}="exit"

View file

@ -34,3 +34,7 @@ Update shell project:
cproj
git pull
Install hwinfo and hdparm
doas pacman -S hwinfo hdparm