From bc5e5a78b9ac74fbc4cae6f4e8c78bd5aeeef579 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 25 May 2021 10:53:14 +0200 Subject: [PATCH] fix org mode dir --- files/.bashrc | 2 +- files/.xinitrc | 4 ++-- files/init.el | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/files/.bashrc b/files/.bashrc index 3a76206..dabf729 100644 --- a/files/.bashrc +++ b/files/.bashrc @@ -1,6 +1,6 @@ # ============================== Prompt git_branch() { - git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/|\1/' + git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/|\1/' } HOST="\[\033[0;93m\]\h\[\033[m\]" diff --git a/files/.xinitrc b/files/.xinitrc index 878b9a0..1ba90b6 100755 --- a/files/.xinitrc +++ b/files/.xinitrc @@ -40,8 +40,8 @@ export PATH=$PATH:$HOME/scripts:$HOME/.cargo/bin:$HOME/.cabal/bin:$HOME/.ghcup/b export _JAVA_AWT_WM_NONREPARENTING=1 # wallpaper -#feh --bg-scale $HOME/data/nextcloud/wallpaper/wallpaper.png -asetroot $HOME/data/nextcloud/wallpaper/animated/current/ -t 100 & +feh --bg-scale $HOME/data/nextcloud/wallpaper/wallpaper.png +#asetroot $HOME/data/nextcloud/wallpaper/animated/current/ -t 100 & dwmblocks & exec dwm 2> ~/.dwm.log diff --git a/files/init.el b/files/init.el index 91811c5..33156a1 100644 --- a/files/init.el +++ b/files/init.el @@ -222,15 +222,15 @@ "oca" 'org-capture) :config (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.5)) - (setq org-agenda-files (quote ("~/data/nextcloud/org"))) - (setq org-directory "~/data/nextcloud/org") + (setq org-agenda-files (quote ("~/org"))) + (setq org-directory "~/org") :init (setq org-todo-keywords '((sequence "TODO" "PROGRESS" "|" "DONE"))) (setq org-log-done 'time) (setq org-capture-templates - (quote (("j" "Japanese" entry (file "~/data/nextcloud/org/japanese.org") "* TODO %?\n") - ("u" "University" entry (file "~/data/nextcloud/org/uni.org") "* TODO %?\n") - ("p" "Personal" entry (file "~/data/nextcloud/org/personal.org") "* TODO %?\n"))))) + (quote (("j" "Japanese" entry (file "~/org/japanese.org") "* TODO %?\n") + ("u" "University" entry (file "~/org/uni.org") "* TODO %?\n") + ("p" "Personal" entry (file "~/org/personal.org") "* TODO %?\n"))))) (use-package org-bullets :ensure t