Compare commits

..

No commits in common. "5a4ddd206d02e6b4ec2f721c1b96d0f934e0b0f0" and "4afa595d404b4a6a582cacd13b7d75b3271ea94f" have entirely different histories.

3 changed files with 0 additions and 15 deletions

2
.gitignore vendored
View file

@ -2,8 +2,6 @@
*~ *~
\#*\# \#*\#
site/
# Internal config files # Internal config files
.cache/ .cache/
eln-cache/ eln-cache/

View file

@ -87,8 +87,6 @@
(load-directory (concat user-emacs-directory "workflows")) (load-directory (concat user-emacs-directory "workflows"))
;; Custom screens ;; Custom screens
(load-directory (concat user-emacs-directory "screens")) (load-directory (concat user-emacs-directory "screens"))
;; Non-VC tracked code - per device
(load-directory (concat user-emacs-directory "site"))
(unless (fboundp 'notifications-notify) (unless (fboundp 'notifications-notify)
(require 'notifications)) (require 'notifications))

View file

@ -25,17 +25,6 @@
(use-package org-jira) (use-package org-jira)
(setq org-jira-working-dir "~/.org/tasks/projects") (setq org-jira-working-dir "~/.org/tasks/projects")
(defun jira ()
"Sign in to Jira and fetch issues."
(interactive)
;; On MacOS I store the API key with security, and retrieve it like this.
;; Auth-source is buggy on MacOS.
(when (equal system-type 'darwin)
(kill-new
(shell-command-to-string (concat "security find-generic-password -a \""
jiralib-user "\" -s \"jira\" -w"))))
(call-interactively #'org-jira-get-issues))
(provide 'jira) (provide 'jira)
;;; jira.el ends here ;;; jira.el ends here