From 6017c12b529074d10098fcda024e8f00c37e7248 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 11 Nov 2019 08:32:25 +0200 Subject: [PATCH] WIP burniso alias Signed-off-by: Marko Korhonen --- home/.config/zsh/03-functions.zsh | 3 +++ 1 file changed, 3 insertions(+) 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 $@ }