Files
2023-04-11 07:32:07 -07:00

16 lines
140 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$DISPLAY" ]
then
NW=""
else
NW="-n"
fi
if [ -z "$@" ]
then
cd $HOME
fi
emacsclient $NW -c -a '' "$@"