diff options
author | Thanos Apollo <[email protected]> | 2024-07-23 17:00:03 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-23 17:00:03 +0300 |
commit | c65a2b3fda5e3bf5b67f28c188e425e004c394f7 (patch) | |
tree | fc01673ef39ff5f0f32a15713f44546b8a3bb85f /gnosis-dashboard.el | |
parent | a017fc1b6e83d6585e8be0d60d7b1bc8189a1fd8 (diff) |
New variable: dashboard-header-face
* Add face for dashboard header.
Diffstat (limited to 'gnosis-dashboard.el')
-rw-r--r-- | gnosis-dashboard.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el index c88f919..d1eb8fb 100644 --- a/gnosis-dashboard.el +++ b/gnosis-dashboard.el @@ -52,6 +52,10 @@ (defvar gnosis-dashboard-search-value nil "Store search value.") +(defface gnosis-dashboard-header-face + '((t :inherit (outline-1) :weight bold)) + "Face for the dashboard header.." + :group 'gnosis) (defun gnosis-dashboard-output-note (id) "Output contents for note with ID, formatted for gnosis dashboard." (cl-loop for item in (append (gnosis-select '[main options answer tags type] 'notes `(= id ,id) t) |