{"id":16194404,"url":"https://github.com/muniftanjim/tmux-mode-indicator","last_synced_at":"2026-03-09T20:02:37.009Z","repository":{"id":39535026,"uuid":"250232580","full_name":"MunifTanjim/tmux-mode-indicator","owner":"MunifTanjim","description":"Plugin that displays prompt indicating currently active Tmux mode.","archived":false,"fork":false,"pushed_at":"2024-06-30T18:29:03.000Z","size":14,"stargazers_count":191,"open_issues_count":3,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-04T06:34:57.130Z","etag":null,"topics":["tmux","tmux-plugin","tmux-plugins"],"latest_commit_sha":null,"homepage":"https://git.io/tmux-mode-indicator","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MunifTanjim.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,"publiccode":null,"codemeta":null},"funding":{"patreon":"MunifTanjim","custom":["https://www.buymeacoffee.com/muniftanjim"]}},"created_at":"2020-03-26T10:53:09.000Z","updated_at":"2026-02-15T05:46:20.000Z","dependencies_parsed_at":"2024-11-09T18:01:27.968Z","dependency_job_id":"dc4dce54-a81c-4d3a-a312-a6a5c3a5d1a3","html_url":"https://github.com/MunifTanjim/tmux-mode-indicator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MunifTanjim/tmux-mode-indicator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MunifTanjim%2Ftmux-mode-indicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MunifTanjim%2Ftmux-mode-indicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MunifTanjim%2Ftmux-mode-indicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MunifTanjim%2Ftmux-mode-indicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MunifTanjim","download_url":"https://codeload.github.com/MunifTanjim/tmux-mode-indicator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MunifTanjim%2Ftmux-mode-indicator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30310000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T17:35:44.120Z","status":"ssl_error","status_checked_at":"2026-03-09T17:35:43.707Z","response_time":61,"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":["tmux","tmux-plugin","tmux-plugins"],"created_at":"2024-10-10T08:19:14.685Z","updated_at":"2026-03-09T20:02:36.986Z","avatar_url":"https://github.com/MunifTanjim.png","language":"Shell","funding_links":["https://patreon.com/MunifTanjim","https://www.buymeacoffee.com/muniftanjim"],"categories":[],"sub_categories":[],"readme":"# Tmux Mode Indicator\n\nPlugin that displays prompt indicating currently active Tmux mode.\n\n**Prefix Prompt**:  \n![Prefix Prompt](screenshots/prefix.png)\n\n**Copy Prompt**:  \n![Copy Prompt](screenshots/copy.png)\n\n**Sync Prompt**:  \n![Sync Prompt](screenshots/sync.png)\n\n**Empty Prompt**:  \n![Empty Prompt](screenshots/empty.png)\n\n_Note: This is a trimmed down version of the original [tmux-prefix-highlight](https://github.com/tmux-plugins/tmux-prefix-highlight) plugin._\n\n## Usage\n\nAdd `#{tmux_mode_indicator}` to the `status-left` or `status-right` option of Tmux. For example:\n\n```conf\nset -g status-right '%Y-%m-%d %H:%M #{tmux_mode_indicator}'\n```\n\n## Installation\n\n### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm)\n\nAdd this repository as a TPM plugin in your `.tmux.conf` file:\n\n```conf\nset -g @plugin 'MunifTanjim/tmux-mode-indicator'\n```\n\nPress `prefix + I` in Tmux environment to install it.\n\n### Manual Installation\n\nClone this repository:\n\n```bash\ngit clone https://github.com/MunifTanjim/tmux-mode-indicator.git ~/.tmux/plugins/tmux-mode-indicator\n```\n\nAdd this line in your `.tmux.conf` file:\n\n```conf\nrun-shell ~/.tmux/plugins/tmux-mode-indicator/mode_indicator.tmux\n```\n\nReload Tmux configuration file with:\n\n```sh\ntmux source-file ~/.tmux.conf\n```\n\n## Configuration Options\n\nThe following configuration options are available:\n\n```ini\n# prompt to display when tmux prefix key is pressed\nset -g @mode_indicator_prefix_prompt ' WAIT '\n\n# prompt to display when tmux is in copy mode\nset -g @mode_indicator_copy_prompt ' COPY '\n\n# prompt to display when tmux has synchronized panes\nset -g @mode_indicator_sync_prompt ' SYNC '\n\n# prompt to display when tmux is in normal mode\nset -g @mode_indicator_empty_prompt ' TMUX '\n\n# style values for prefix prompt\nset -g @mode_indicator_prefix_mode_style 'bg=blue,fg=black'\n\n# style values for copy prompt\nset -g @mode_indicator_copy_mode_style 'bg=yellow,fg=black'\n\n# style values for sync prompt\nset -g @mode_indicator_sync_mode_style 'bg=red,fg=black'\n\n# style values for empty prompt\nset -g @mode_indicator_empty_mode_style 'bg=cyan,fg=black'\n```\n\n### Custom Indicator\n\nYou can override the indicator at any time by setting these options:\n\n```ini\n# prompt to display instead of default mode indicators\nset @mode_indicator_custom_prompt ' ---- '\n\n# style values for custom prompt\nset @mode_indicator_custom_mode_style 'default'\n```\n\nTo revert back to the default mode indicators, unset those options:\n\n```ini\nset -u @mode_indicator_custom_prompt\n\nset -u @mode_indicator_custom_mode_style\n```\n\n## License\n\nLicensed under the MIT License. Check the [LICENSE](./LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuniftanjim%2Ftmux-mode-indicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuniftanjim%2Ftmux-mode-indicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuniftanjim%2Ftmux-mode-indicator/lists"}