diff options
author | bd <bdunahu@operationnull.com> | 2024-10-03 10:32:46 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-10-03 10:32:46 -0400 |
commit | 4e4c968d46fe75e59d2603395d2b91d200eecc05 (patch) | |
tree | 2f73f3bba0c3dc11c835e7f8e81bfa7b7e3bcc94 /.config/emacs | |
parent | 841fdfe011b58533e20379fd59f88db9f5608915 (diff) |
Compile command finds base directory regardless of Make, update RSS
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/bd--devel.el | 4 | ||||
-rw-r--r-- | .config/emacs/modules/bd--rss.el | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--devel.el b/.config/emacs/modules/bd--devel.el index d41fa27..a1bbbf7 100644 --- a/.config/emacs/modules/bd--devel.el +++ b/.config/emacs/modules/bd--devel.el @@ -34,7 +34,9 @@ to.") (defun bd/compile-dwim (f) (let ((default-directory - (or (locate-dominating-file "." "Makefile") + (or (locate-dominating-file "." "Makefile") ;; make + (locate-dominating-file "." "build.xml") ;; ant + (locate-dominating-file "." "manifest.scm") ;; guix default-directory))) (call-interactively f))) diff --git a/.config/emacs/modules/bd--rss.el b/.config/emacs/modules/bd--rss.el index 3c0bf18..eda6063 100644 --- a/.config/emacs/modules/bd--rss.el +++ b/.config/emacs/modules/bd--rss.el @@ -14,13 +14,12 @@ ("suckless.org news" "https://suckless.org/atom.xml" nil nil nil) ("Mental Outlaw" "https://vid.puffyan.us/feed/channel/UC7YOGHUfC1Tb6E4pudI9STA" nil nil nil) ("Luke Smith" "https://vid.puffyan.us/feed/channel/UC2eYFnH61tmytImy1mTYvhA" nil nil nil) - ("SystemCrafters" "https://yewtu.be/feed/channel/UCAiiOTio8Yu69c3XnR7nQBQ" nil nil nil) ("Protesilaos Stravrou" "https://vid.puffyan.us/feed/channel/UC0uTPqBCFIpZxlz_Lv1tk_g" nil nil nil)) ;; may require ./newsticker/groups to be cleared newsticker-groups '("Feeds" ("READING" "James Enge Mastodon") ("TECH" "Parabola GNU/Linux-libre" "suckless.org news" "operationnull blog") - ("VIDEO" "Mental Outlaw" "Luke Smith" "Protesilaos Stravrou" "SystemCrafters"))) + ("VIDEO" "Mental Outlaw" "Luke Smith" "Protesilaos Stravrou"))) (provide 'bd--rss) |