about summary refs log tree commit diff
path: root/packages/lemacs/default.nix
blob: bab75ea566f0099e7dede2b9350ceadb47b9844c (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
''