Commit 3e10259342cd

Vincent Demeester <vincent@sbr.pm>
2020-04-30 00:53:54
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>
1 parent f05f28b
Changed files (1)
modules
profiles
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
 {