mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
50 lines
893 B
Bash
Executable File
50 lines
893 B
Bash
Executable File
#!/bin/sh
|
|
ATOM_PATH=/Applications/Atom.app
|
|
ATOM_BINARY=$ATOM_PATH/Contents/MacOS/Atom
|
|
|
|
if [ ! -d $ATOM_PATH ]; then sleep 5; fi # Wait for Atom to reappear, Sparkle may be replacing it.
|
|
|
|
if [ ! -d $ATOM_PATH ]; then
|
|
echo "Atom application not found at '$ATOM_PATH'" >&2
|
|
exit 1
|
|
fi
|
|
|
|
while getopts ":whv-:" opt; do
|
|
case "$opt" in
|
|
-)
|
|
case "${OPTARG}" in
|
|
wait)
|
|
WAIT=1
|
|
;;
|
|
help|version)
|
|
EXPECT_OUTPUT=1
|
|
;;
|
|
esac
|
|
;;
|
|
w)
|
|
WAIT=1
|
|
;;
|
|
h|v)
|
|
EXPECT_OUTPUT=1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ $EXPECT_OUTPUT ]; then
|
|
$ATOM_BINARY --executed-from="$(pwd)" --pid=$$ $@
|
|
else
|
|
open -a $ATOM_PATH -n --args --executed-from="$(pwd)" --pid=$$ $@
|
|
fi
|
|
|
|
# Used to exit process when atom is used as $EDITOR
|
|
on_die() {
|
|
exit 0
|
|
}
|
|
trap 'on_die' SIGQUIT SIGTERM
|
|
|
|
if [ $WAIT ]; then
|
|
while true; do
|
|
sleep 1
|
|
done
|
|
fi
|