mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
16 lines
352 B
Bash
16 lines
352 B
Bash
local _atom_paths > /dev/null 2>&1
|
|
_atom_paths=(
|
|
"$HOME/Applications/Atom.app"
|
|
"/Applications/Atom.app"
|
|
)
|
|
|
|
for _atom_path in $_atom_paths; do
|
|
if [[ "$OSTYPE" == "linux-gnu" ]]; then
|
|
alias at="/usr/bin/atom"
|
|
elif [[ -a $_atom_path ]]; then
|
|
alias at="open -a '$_atom_path'"
|
|
break
|
|
fi
|
|
done
|
|
|
|
alias att='at .'
|