diff --git a/home/.config/zsh/03-functions.zsh b/home/.config/zsh/03-functions.zsh index 96af1b8..a466076 100644 --- a/home/.config/zsh/03-functions.zsh +++ b/home/.config/zsh/03-functions.zsh @@ -138,6 +138,9 @@ ls() { ls_extended $@ } # default icon for notify-send notify-send() { /usr/bin/notify-send --icon=alarm $@ } +# Burn bootable iso +#burniso() { dd if=$1 | pv -s $(du -h $1 | awk '{print $1;}' | dd of=$2 bs=4M } + # colorise output cvs() { grc cvs $@ } df() { grc df $@ }