summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/cron/crontog2
-rwxr-xr-x.local/bin/texclear2
2 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/cron/crontog b/.local/bin/cron/crontog
index 5aba5e6..c9a640f 100755
--- a/.local/bin/cron/crontog
+++ b/.local/bin/cron/crontog
@@ -1,6 +1,6 @@
#!/bin/sh
# Toggles all cronjobs off/on.
-# Stores disabled crontabs in ~/.consaved until restored.
+# Stores disabled crontabs in ~/.config/cronsaved until restored.
([ -f "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved ] && crontab - < "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && rm "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.")
diff --git a/.local/bin/texclear b/.local/bin/texclear
index f38f7be..4cdb02e 100755
--- a/.local/bin/texclear
+++ b/.local/bin/texclear
@@ -9,7 +9,7 @@ case "$1" in
dir=$(dirname "$file")
base="${file%.*}"
find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyg|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete
- rm -rdf "$dir/_minted-$(basename -- $base)"
+ rm -rdf "$dir/_minted-$(basename -- "$base")"
;;
*) printf "Give .tex file as argument.\\n" ;;
esac