{"id":27063883,"url":"https://github.com/danielfleischer/mood-line","last_synced_at":"2026-01-20T16:01:58.291Z","repository":{"id":167144025,"uuid":"642719679","full_name":"danielfleischer/mood-line","owner":"danielfleischer","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-08T06:50:57.000Z","size":540,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T22:16:37.569Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danielfleischer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-05-19T07:40:19.000Z","updated_at":"2023-05-19T07:45:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"ed105835-c6ee-4b0b-9b58-e7e61dd34183","html_url":"https://github.com/danielfleischer/mood-line","commit_stats":null,"previous_names":["danielfleischer/mood-line"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/danielfleischer/mood-line","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielfleischer%2Fmood-line","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielfleischer%2Fmood-line/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielfleischer%2Fmood-line/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielfleischer%2Fmood-line/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielfleischer","download_url":"https://codeload.github.com/danielfleischer/mood-line/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielfleischer%2Fmood-line/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28606288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T14:45:23.139Z","status":"ssl_error","status_checked_at":"2026-01-20T14:44:16.929Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-05T16:35:21.929Z","updated_at":"2026-01-20T16:01:58.255Z","avatar_url":"https://github.com/danielfleischer.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\".repo-assets/icon.png\" width=50\u003e mood-line\n\nA lightweight, drop-in replacement for the default Emacs mode line configuration.\n\n[![MELPA](https://melpa.org/packages/mood-line-badge.svg)](https://melpa.org/#/mood-line)\n[![MELPA Stable](https://stable.melpa.org/packages/mood-line-badge.svg)](https://stable.melpa.org/#/mood-line)\n\n## Features\n\n* Clean, informative design\n\n* Customizable, modular segment format\n\n* Customizable glyph sets\n\n* Lazy-loaded extensions\n\n* [Lightweight](.repo-assets/benchmark.md), no dependencies\n\n## Preview\n\n![Preview Image](.repo-assets/preview.webp \"Preview Image\")\n\n## Configuration\n\nYou can install mood-line directly via `package-install` from [MELPA](https://melpa.org/).\nAfter installation, you can activate the global minor mode with `M-x mood-line-mode`.\nDeactivating `mode-line-mode` will restore the default `mode-line-format`.\n\nIf you are a user of `use-package`, it is easy to configure mood-line directly in your init.el:\n\n```elisp\n(use-package mood-line\n\n  ;; Enable mood-line\n  :config\n  (mood-line-mode)\n\n  ;; Use pretty Fira Code-compatible glyphs\n  :custom\n  (mood-line-glyph-alist mood-line-glyphs-fira-code))\n```\n\n### Format\n\nmood-line uses a modular segment format, and it is easy to reconfigure:\n\n```elisp\n;; Default format:\n;;   * init.el  4:32 Top                                         ELisp  ! Issues: 2\n(setq mood-line-format mood-line-format-default)\n\n;; Extended format:\n;;   * init.el  4:32:52 Top                    SPCx2  LF  UTF-8  ELisp  ! Issues: 2\n(setq mood-line-format mood-line-format-default-extended)\n\n;; Custom format:\n;;   * init.el : ELisp                                     Top 4:32  |  ! Issues: 2\n(setq mood-line-format\n      (mood-line-defformat\n       :left\n       (((mood-line-segment-buffer-status) . \" \")\n        ((mood-line-segment-buffer-name)   . \" : \")\n        (mood-line-segment-major-mode))\n       :right\n       (((mood-line-segment-scroll)             . \" \")\n        ((mood-line-segment-cursor-position)    . \"  \")\n        ((when (mood-line-segment-checker) \"|\") . \"  \")\n        ((mood-line-segment-checker)            . \"  \"))))\n```\n\nMore information on the format specification is available in the documentation:\\\n`M-x describe-variable mood-line-format`\\\n`M-x describe-function mood-line-defformat`\n\n### Glyphs\n\nBy default, mood-line will use basic ASCII character glyphs to decorate mode line segments.\nIf you'd like to see prettier Unicode glyphs, you can change the value of `mood-line-glyph-alist`:\n\n```elisp\n;; The default set of glyphs:\n;;   * myModifiedFile.js  Replace*3                 + main  JavaScript  ! Issues: 2\n(setq mood-line-glyph-alist mood-line-glyphs-ascii)\n\n;; A set of Fira Code-compatible Unicode glyphs:\n;;   ● myModifiedFile.js  Replace×3                 + main  JavaScript  → Issues: 2\n(setq mood-line-glyph-alist mood-line-glyphs-fira-code)\n\n;; A set of Unicode glyphs:\n;;   ● myModifiedFile.js  Replace✕3                 🞤 main  JavaScript  ⚑ Issues: 2\n(setq mood-line-glyph-alist mood-line-glyphs-unicode)\n```\n\nIf you'd like to supply your own glyphs, you can use the customization interface\n(`M-x customize-variable mood-line-glyph-alist`) or view the documentation\n(`M-x describe-variable mood-line-glyph-alist`) for more information.\n\nYou can further tweak the behavior and appearance of mood-line by viewing the customizable variables\nand faces in the `mood-line` and `mood-line-faces` customization groups. (`M-x customize-group mood-line`)\n\n## Testing\n\nTo run the included tests:\n\n```bash\n./ert-test.sh\n```\n\n## Feedback\n\nIf you experience any issues with this package, please\n[open an issue](https://git.tty.dog/jessieh/mood-line/issues/new)\non the issue tracker.\n\nSuggestions for improvements and feature requests are always appreciated, as well!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielfleischer%2Fmood-line","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielfleischer%2Fmood-line","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielfleischer%2Fmood-line/lists"}