diff options
-rw-r--r-- | bash/dot-bash_aliases | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/dot-bash_aliases b/bash/dot-bash_aliases index 51b3c3f..054ec87 100644 --- a/bash/dot-bash_aliases +++ b/bash/dot-bash_aliases @@ -29,7 +29,9 @@ alias ztree='tree -I zig-cache' # Clean whiteboards! # found at: https://gist.github.com/lelandbatey/8677901 -alias whiteboard="convert $1 -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 $2" +function whiteboard { + convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2" +} # Pandoc for ElenQ alias pandoc-xelatex="pandoc $@ --pdf-engine=xelatex --to latex -N" |