about summary refs log tree commit diff
path: root/packages/lemacs/default.nix
blob: fdf6341c0cf996737bd39585fc4c7c7f92a454e4 (plain) (blame)
1
2
3
4
5
6
7
8
{writeShellScriptBin, ...}:
writeShellScriptBin "lemacs" ''
  if [ -n "$DISPLAY" ]; then
      emacsclient -a "" -n -c "$@"
  else
      emacsclient -a "" -c "$@"
  fi
''