org-agenda

A built-in agenda for emacs org-mode. Backlinks org-mode

March 19, 2024 · Kristian Alexander P

notmuch

Required Setups Packages notmuch msmtp Preferrably, emacs as a frontend. Message (use-package message :custom (message-directory (expand-file-name ".mail" (getenv "HOME"))) (message-sendmail-envelope-from 'header)) Notes: message-directory should reflects the root directory for mail. sendmail (use-package sendmail :custom (mail-specify-envelope-from t) (mail-envelope-from 'header) (send-mail-function 'sendmail-send-it) (sendmail-program (executable-find "msmtp"))) Notes: sendmail-program should point to the full path. Hooks Post-new #!/usr/bin/env bash _AFEW=$(command -v afew) newcount=$(notmuch count tag:new) summary="Notmuch: ${newcount} new message" [ -n "${_AFEW}" ] && "${_AFEW}" --tag --new -vv if [ $newcount -gt 1 ]; then summary="${summary}s"; fi if [ $newcount -gt 0 ]; then detail="$(notmuch search --output=summary --format=json tag:new | sed -e 's/....

February 23, 2024 · Kristian Alexander P

org-mode

a mode for document editing, formatting, and organizing within the free software text editor GNU emacs and its derivatives, designed for notes, planning, and authoring. Using Property in headline org-agenda will automatically show the CATEGORY property if it is set. Backlinks noweb org-agenda github hugo

February 21, 2024 · Kristian Alexander P

emacs

a family of text editors that are characterized by their extensibility. Backlinks notmuch org-mode org-agenda systemd github hugo

February 21, 2024 · Kristian Alexander P