xmonad-contrib-0.17.0.9: Community-maintained extensions for xmonad
Copyright(c) 2021 Tony Zorman
LicenseBSD3-style (see LICENSE)
MaintainerTony Zorman <soliditsallgood@mailbox.org>
Stabilityexperimental
Portabilityunknown
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Prompt.OrgMode

Description

A prompt for interacting with org-mode. This can be seen as an org-specific version of XMonad.Prompt.AppendFile, allowing for more interesting interactions with that particular file type.

It can be used to quickly save TODOs, NOTEs, and the like with the additional capability to schedule/deadline a task, add a priority, and use the system's clipboard (really: the primary selection) as the contents of the note.

A blog post highlighting some features of this module can be found here.

Synopsis

Usage

You can use this module by importing it, along with XMonad.Prompt, in your xmonad.hs

import XMonad.Prompt
import XMonad.Prompt.OrgMode (orgPrompt)

and adding an appropriate keybinding. For example, using syntax from XMonad.Util.EZConfig:

, ("M-C-o", orgPrompt def "TODO" "/home/me/org/todos.org")

This would create notes of the form * TODO my-message in the specified file.

You can also enter a relative path; in that case the file path will be prepended with $HOME or an equivalent directory. I.e. instead of the above you can write

, ("M-C-o", orgPrompt def "TODO" "org/todos.org")
               -- also possible: "~/org/todos.org"

There is also some scheduling and deadline functionality present. This may be initiated by entering +s or +d—separated by at least one whitespace character on either side—into the prompt, respectively. Then, one may enter a date and (optionally) a time of day. Any of the following are valid dates, where brackets indicate optionality:

  • tod[ay]
  • tom[orrow]
  • any weekday
  • any date of the form DD [MM] [YYYY]

In the last case, the missing month and year will be filled out with the current month and year.

For weekdays, we also disambiguate as early as possible; a simple w will suffice to mean Wednesday, but s will not be enough to say Sunday. You can, however, also write the full word without any troubles. Weekdays always schedule into the future; e.g., if today is Monday and you schedule something for Monday, you will actually schedule it for the next Monday (the one in seven days).

The time is specified in the HH:MM format. The minutes may be omitted, in which case we assume a full hour is specified.

A few examples are probably in order. Suppose we have bound the key above, pressed it, and are now confronted with a prompt:

  • hello +s today would create a TODO note with the header hello and would schedule that for today's date.
  • hello +s today 12 schedules the note for today at 12:00.
  • hello +s today 12:30 schedules it for today at 12:30.
  • hello +d today 12:30 works just like above, but creates a deadline.
  • hello +s thu would schedule the note for next thursday.
  • hello +s 11 would schedule it for the 11th of this month and this year.
  • hello +s 11 jan 2013 would schedule the note for the 11th of January 2013.

Note that, due to ambiguity concerns, years below 25 result in undefined parsing behaviour. Otherwise, what should message +s 11 jan 13 resolve to—the 11th of january at 13:00 or the 11th of january in the year 13?

There is basic support for alphabetic org-mode priorities. Simply append either #A, #B, or #C (capitalisation is optional) to the end of the note. For example, one could write "hello +s 11 jan 2013 #A" or "hello #C". Note that there has to be at least one whitespace character between the end of the note and the chosen priority.

There's also the possibility to take what's currently in the primary selection and paste that as the content of the created note. This is especially useful when you want to quickly save a URL for later and return to whatever you were doing before. See the orgPromptPrimary prompt for that.

Prompts

orgPrompt Source #

Arguments

:: XPConfig

Prompt configuration

-> String

What kind of note to create; will be displayed after a single *

-> FilePath

Path to .org file, e.g. home/me/todos.org

-> X () 

Prompt for interacting with org-mode.

orgPromptPrimary :: XPConfig -> String -> FilePath -> X () Source #

Like orgPrompt, but additionally make use of the primary selection. If it is a URL, then use an org-style link [[primary-selection][entered message]] as the heading. Otherwise, use the primary selection as the content of the note.

The prompt will display a little + PS in the window after the type of note.

Types

data ClipboardSupport Source #

Whether we should use a clipboard and which one to use.