Browse Source

Fix config variable name

Samuel W. Flint 4 years ago
parent
commit
c3dc293423
1 changed files with 2 additions and 2 deletions
  1. 2 2
      day

+ 2 - 2
day

@@ -3,7 +3,7 @@
 XSESS=1
 
 SSH_TIME=${SSH_TIME:-3h}
-START_EMACS_START=${START_EMACS_START:-1}
+START_EMACS=${START_EMACS:-1}
 
 if [ -x "${DISPLAY}" ] ; then
     XSESS=0
@@ -23,7 +23,7 @@ check_ssh() {
 }
 
 start_emacs() {
-    if [ $START_EMACS_START -eq 1 ] ; then
+    if [ $START_EMACS -eq 1 ] ; then
         i3-run i3-workspace-layout emacs-here "1: emacs"
     fi
 }