GitXplorerGitXplorer
e

org-agenda-category-icons

public
11 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
7d2ecc899c35279e1d68da6e21e437627c81743a

Fix copyright mistakes

eegregius313 committed 3 years ago
Unverified
6530dbbc15a9f48739e82b94460f2fa81bc678a1

Added README

eegregius313 committed 3 years ago
Unverified
2e4dfae9e3a37bc604abd1d900efe70958b7affd

Fixed bug from old name

eegregius313 committed 3 years ago
Unverified
94342e6e7a8ea98280e313262d4f2d745956d946

Fixed group issue

eegregius313 committed 3 years ago
Unverified
a14adb9c943e58f3448964b9690320a92fcd60d2

Initial commit

eegregius313 committed 3 years ago

README

The README file for this repository.

#+title: org-agenda-category-icons #+AUTHOR: Edward Minnix egregius313@gmail.com

  • org-agenda-category-icons: a package for defining your icons

One of the nicest features of org-agenda is the [[https://www.gnu.org/software/emacs/manual/html_node/org/Categories.html][org-agenda-category-alist variable]]. However, using fancier icons, like from [[https://github.com/domtronn/all-the-icons.el][All the Icons]], can be quite cumbersome. So this package provides a macro org-agenda-category-icons! to make this nicer.

#+begin_src emacs-lisp (org-agenda-category-icons! ;; Set the icon for the category "sleep" to the faicon "bed" icon from ;; `all-the-icons' :faicon (bed sleep)

;; Podcast => the radio-tower octicon icon :octicon (radio-tower Podcast)

:material (local_car_wash "Car Wash") ;; multi-word categories should be in a string

;; Use a bare emoji :emoji ("🏋" Workout workouts) ;; define multiple categories

:alltheicon (rust "Rust Philly")) #+end_src

  • Using the macro

The default icon sets are defined in the org-agenda-category-icons-iconset-alist variable.

By default the options include

| Keyword | Icon Set | |---------------+-----------------------------| | :faicon | Font Awesome Icons | | :octicon | Github Octicons | | :material | Material Icons | | :wicon | Weather icons | | :alltheicon | Other all-the-icons icons | | :emoji | Emoji |