commit 3e10259342cdae0c64d4ffde848ec699f4d9f636
parent f05f28b56c156680b048a228b1cde483060a4326
Author: Vincent Demeester <vincent@sbr.pm>
Date: Thu, 30 Apr 2020 00:53:54 +0200
emacs.nix: update capture script 💦
- Specify the server socket (systemd emacs daemon named org)
- Make the frame bigger
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/profiles/emacs.nix b/modules/profiles/emacs.nix
@@ -6,7 +6,7 @@ let
capture = pkgs.writeScriptBin "capture" ''
#!${pkgs.stdenv.shell}
- emacsclient -n -F '((name . "capture") (width . 75) (height . 30))' -e '(org-capture)'
+ emacsclient -s /run/user/1000/emacs/org -n -F '((name . "capture") (width . 150) (height . 90))' -e '(org-capture)'
'';
in
{