refactor(zsh): better loading of audio-record

This commit is contained in:
Price Hiller 2022-10-10 01:40:22 -05:00
parent c4f04ad1e8
commit 337ab10e6b

View File

@ -64,4 +64,7 @@ alias e="${EDITOR}"
alias Get-Public-IPV4="dig @resolver4.opendns.com myip.opendns.com +short -4"
alias Get-Public-IPV6="dig @resolver1.ipv6-sandbox.opendns.com AAAA myip.opendns.com +short -6"
alias cv="command -v"
alias audio-record="arecord -f dat -r 41000 -d 5 $(date_iso_8601).wav"
if command -v arecord >/dev/null 2>&1 then
alias audio-record="arecord -f dat -r 41000 -d 5 $(date_iso_8601).wav"
fi