Skip to content

Instantly share code, notes, and snippets.

@notetiene
Created January 10, 2017 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notetiene/e8e83bc3847fd976f91eb2242208a8bc to your computer and use it in GitHub Desktop.
Save notetiene/e8e83bc3847fd976f91eb2242208a8bc to your computer and use it in GitHub Desktop.
Launch emacs server if it's not running or launch emacsclient
#!/bin/bash -e
emacs_server_is_running() {
return lsof -c emacs | grep server | tr -s " " | cut -d' ' -f8
}
if [[ `emacs_server_is_running` ]]; then
emacsclient "$@"
else
emacs "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment