· 5 years ago · Oct 21, 2020, 11:52 AM
1;;;###autoload
2(defgroup screenshot nil
3 "Wrapper around maim for taking screenshots with imgur integration"
4 :tag "Screenshot"
5 :group 'applications)
6
7(defcustom imgur-api-key ""
8 "API key needed for imgur."
9 :group 'screenshot
10 :tag "Imgur API key"
11 :type 'string)
12
13(provide 'screenshot)
14;;; screenshot.el ends here