about summary refs log blame commit diff
path: root/packages/lemacs/default.nix
blob: bab75ea566f0099e7dede2b9350ceadb47b9844c (plain) (tree)
1
2
3
4
5
6
7
8







                                
{ writeShellScriptBin, ... }:
writeShellScriptBin "lemacs" ''
if [ -n "$DISPLAY" ]; then
    emacsclient -a "" -n -c "$@"
else
    emacsclient -a "" -c "$@"
fi
''