parent
6b3c953775
commit
5f31190ab9
1 changed files with 14 additions and 4 deletions
@ -1,4 +1,14 @@ |
||||
# |
||||
# Your guess is as good as mine. Let's just assume that we will need this... |
||||
# - For more info visit... http://atom.io/ |
||||
# |
||||
local _atom_paths > /dev/null 2>&1 |
||||
_atom_paths=( |
||||
"$HOME/Applications/Atom.app" |
||||
"/Applications/Atom.app" |
||||
) |
||||
|
||||
for _atom_path in $_atom_paths; do |
||||
if [[ -a $_atom_path ]]; then |
||||
alias at="open -a '$_atom_path'" |
||||
break |
||||
fi |
||||
done |
||||
|
||||
alias att='at .' |
||||
|
||||
Loading…
Reference in new issue