add missing libs and update settings to new versions

This commit is contained in:
2022-01-05 10:56:16 +01:00
parent c781a5becb
commit 5068bab121
34 changed files with 7215 additions and 124 deletions

View File

@@ -433,16 +433,6 @@ Usage:
(if (> diff 0) "Need to pull"
"Need to push"))
diff))))
(defun my-dashboard-config-update ()
(if (featurep 'magit)
(let ((diff (my-magit-repo-status "~/.config/emacs" "master" t)))
(if (= diff 0) "Up-to-date"
(if (= diff 1) "1 update"
(if (= diff -1) "1 commit unpushed"
(if (> diff 0) (format "%s updates" diff)
(format "%s commits unpushed" (- diff)))))))
(require 'magit nil t)
"Check"))
(provide 'my)
;;; my.el ends here