diff options
author | EuAndreh <eu@euandre.org> | 2018-03-23 20:38:44 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-03-23 20:49:09 -0300 |
commit | 4e734232c611890f616194ed5cfade2549e4491b (patch) | |
tree | 38e74c5f28aaa8ecc8c6cbff7836d919c8fa7a1b /bash/facepalm | |
parent | Initial commit: add git-crypt .gitattributes file (diff) | |
download | dotfiles-4e734232c611890f616194ed5cfade2549e4491b.tar.gz dotfiles-4e734232c611890f616194ed5cfade2549e4491b.tar.xz |
Initial commit: now public (again)
Diffstat (limited to 'bash/facepalm')
-rw-r--r-- | bash/facepalm/Positive.mp3 | bin | 0 -> 59008 bytes | |||
-rw-r--r-- | bash/facepalm/rotten-apple.sh | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/bash/facepalm/Positive.mp3 b/bash/facepalm/Positive.mp3 Binary files differnew file mode 100644 index 0000000..a560be1 --- /dev/null +++ b/bash/facepalm/Positive.mp3 diff --git a/bash/facepalm/rotten-apple.sh b/bash/facepalm/rotten-apple.sh new file mode 100644 index 0000000..0cdf329 --- /dev/null +++ b/bash/facepalm/rotten-apple.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +isMac && { + unalias open + + alias limpar-derived-data="rm -rf ~/Library/Developer/Xcode/DerivedData/" + alias fim="afplay $DOTFILES/bash/facepalm/Positive.mp3" + + if [ -f $(brew --prefix)/etc/bash_completion ]; then + . $(brew --prefix)/etc/bash_completion + fi + + [ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion + + [ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh + + + alias ast="open -a \"Android Studio\"" +} |