{"id":30384185,"url":"https://github.com/robertkirk/tmux-ram","last_synced_at":"2026-06-19T01:31:32.972Z","repository":{"id":131292231,"uuid":"168578497","full_name":"RobertKirk/tmux-ram","owner":"RobertKirk","description":"Plug and play RAM percentage and icon indicator for Tmux","archived":false,"fork":false,"pushed_at":"2019-02-19T14:30:39.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-21T01:26:10.844Z","etag":null,"topics":["linux","shell","tmux","tmux-plugin","tpm","tpm-plugin"],"latest_commit_sha":null,"homepage":null,"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/RobertKirk.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,"zenodo":null}},"created_at":"2019-01-31T18:53:17.000Z","updated_at":"2019-12-24T17:27:09.000Z","dependencies_parsed_at":"2023-04-14T11:00:46.326Z","dependency_job_id":null,"html_url":"https://github.com/RobertKirk/tmux-ram","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RobertKirk/tmux-ram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertKirk%2Ftmux-ram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertKirk%2Ftmux-ram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertKirk%2Ftmux-ram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertKirk%2Ftmux-ram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobertKirk","download_url":"https://codeload.github.com/RobertKirk/tmux-ram/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobertKirk%2Ftmux-ram/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34514282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["linux","shell","tmux","tmux-plugin","tpm","tpm-plugin"],"created_at":"2025-08-21T01:18:12.578Z","updated_at":"2026-06-19T01:31:32.962Z","avatar_url":"https://github.com/RobertKirk.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tmux Ram Usage\n\nPlug and play RAM percentage and icon indicator for Tmux, can be used in `status-right` and `status-left`.\n\nVery much inspired by tmux-ram, and most of the structure is copied from there.\n\n## Installation\n### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm) (recommended)\n\nAdd plugin to the list of TPM plugins in `.tmux.conf`:\n\n    set -g @plugin 'RobertKirk/tmux-ram'\n\nHit `prefix + I` to fetch the plugin and source it.\n\nIf format strings are added to `status-right`, they should now be visible.\n\n### Manual Installation\n\nClone the repo:\n\n    $ git clone https://github.com/RobertKirk/tmux-ram ~/clone/path\n\nAdd this line to the bottom of `.tmux.conf`:\n\n    run-shell ~/clone/path/ram.tmux\n\nReload TMUX environment:\n\n    # type this in terminal\n    $ tmux source-file ~/.tmux.conf\n\nIf format strings are added to `status-right`, they should now be visible.\n\n## Usage\n\nAdd any of the supported format strings (see below) to the existing `status-right` tmux option.\nExample:\n\n    # in .tmux.conf\n    set -g status-right '#{ram_bg_color} ram: #{ram_icon} #{ram_percentage} | %a %h-%d %H:%M '\n\n### Supported Options\n\nThis is done by introducing 8 new format strings that can be added to\n`status-right` option:\n\n - `#{ram_icon}` - will display a ram status icon\n - `#{ram_percentage}` - will show ram percentage (averaged across cores)\n - `#{ram_bg_color}` - will change the background color based on the ram percentage\n - `#{ram_fg_color}` - will change the foreground color based on the ram percentage\n\n## Changing default\n\nBy default, these icons are displayed:\n\n - low: \"=\"\n - medium: \"≡\"\n - high: \"≣\"\n\nAnd these colors are used:\n\n - low: `#[fg=green]` `#[bg=green]`\n - medium: `#[fg=yellow]` `#[bg=yellow]`\n - high: `#[fg=red]` `#[bg=red]`\n\nNote that these colors depend on your terminal / X11 config.\n\nYou can change these defaults by adding the following to `.tmux.conf`:\n\n```\nset -g @ram_low_icon \"ᚋ\"\nset -g @ram_medium_icon \"ᚌ\"\nset -g @ram_high_icon \"ᚍ\"\n\nset -g @ram_low_fg_color \"#[fg=#00ff00]\"\nset -g @ram_medium_fg_color \"#[fg=#ffff00]\"\nset -g @ram_high_fg_color \"#[fg=#ff0000]\"\n\nset -g @ram_low_bg_color \"#[bg=#00ff00]\"\nset -g @ram_medium_bg_color \"#[bg=#ffff00]\"\nset -g @ram_high_bg_color \"#[bg=#ff0000]\"\n```\n\nDon't forget to reload tmux environment (`$ tmux source-file ~/.tmux.conf`)\nafter you do this.\n\n### Maintainer\n\n - [Robert Kirk](https://github.com/RobertKirk)\n\n### License\n\n[MIT](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertkirk%2Ftmux-ram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertkirk%2Ftmux-ram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertkirk%2Ftmux-ram/lists"}