From 158f810981fa0a77de76f0f7e07b60482a9ba10e Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 31 Aug 2020 23:28:22 +0100 Subject: Delete bills.el Another cold, stale Elisp module. --- emacs/.emacs.d/wpc/bills.el | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 emacs/.emacs.d/wpc/bills.el diff --git a/emacs/.emacs.d/wpc/bills.el b/emacs/.emacs.d/wpc/bills.el deleted file mode 100644 index fbdeb9d0f820..000000000000 --- a/emacs/.emacs.d/wpc/bills.el +++ /dev/null @@ -1,26 +0,0 @@ -;;; bills.el --- Helping me manage my bills -*- lexical-binding: t -*- -;; Author: William Carroll - -;;; Commentary: -;; For personal use only. - -;;; Code: - -(defconst bills/whitelist '(("Council Tax" . "rbkc.gov.uk/onlinepayments/counciltaxpayments/") - ("Internet". "plus.net/member-centre/login")) - "Maps searchable labels to URLs to pay these bills.") - -(defun bills/url () - "Copies the URL to pay a bill onto the clipboard." - (ivy-read - "Bill: " - bills/whitelist - :action (lambda (entry) - (kill-new (cdr entry)) - (alert "Copied to clipboard!")))) - -(macros/comment - (bills/url)) - -(provide 'bills) -;;; bills.el ends here -- cgit 1.4.1