about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T22·28+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T22·28+0100
commit158f810981fa0a77de76f0f7e07b60482a9ba10e (patch)
tree988523c781cfcc7b01a259fa016bc499089b1372
parent644e01eb21ee4f0a4c241af42fb2d89c5c97ea2f (diff)
Delete bills.el
Another cold, stale Elisp module.
-rw-r--r--emacs/.emacs.d/wpc/bills.el26
1 files changed, 0 insertions, 26 deletions
diff --git a/emacs/.emacs.d/wpc/bills.el b/emacs/.emacs.d/wpc/bills.el
deleted file mode 100644
index fbdeb9d0f8..0000000000
--- 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 <wpcarro@gmail.com>
-
-;;; 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