diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-05-24 21:58:46 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-05-24 21:58:46 +0200 |
commit | f6f9badde5dac7a996aa6000e25c6607a44223e5 (patch) | |
tree | 52dba1f4e0f917df29abda3eae079b9a6d2a1b35 /bash | |
parent | 8a68072713438b701b764657c7ffd473ac292649 (diff) |
New aliases
Diffstat (limited to 'bash')
-rw-r--r-- | bash/.bash_aliases | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bash/.bash_aliases b/bash/.bash_aliases index 24185b6..cd52b03 100644 --- a/bash/.bash_aliases +++ b/bash/.bash_aliases @@ -23,3 +23,9 @@ alias l='ls -CF' # alias for Node.js projects alias ntree='tree -I node_modules' +# alias for Clojure projects +alias ctree='tree -I target' + +# 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" |