From c76bd8329a6057d40970a23055695fff0df18bee Mon Sep 17 00:00:00 2001 From: coolneng Date: Sat, 8 Jun 2019 09:16:44 +0200 Subject: [PATCH] Delay emacs daemon start to apply git pull before --- openbox/.config/openbox/autostart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/.config/openbox/autostart b/openbox/.config/openbox/autostart index a6e6a46..e8ea6c1 100755 --- a/openbox/.config/openbox/autostart +++ b/openbox/.config/openbox/autostart @@ -39,8 +39,8 @@ touch /tmp/mpd-log & (sleep 3; bash -c "secret-tool lookup 'gpg' 'login' | gpg --no-tty --pinentry-mode loopback --passphrase-fd 0 -d ~/.password-store/mail/uni.gpg") & ## Spacemacs daemon -(sleep 3; cd ~/.emacs.d; git pull --rebase) & -(sleep 7; emacs --daemon=instance1) & +(sleep 4; cd ~/.emacs.d; git pull --rebase) & +(sleep 8; emacs --daemon=instance1) & ## Imap IDLE #(sleep 10; imapnotify -c ~/.config/imapnotify/gmail.js) &