{"id":18611026,"url":"https://github.com/beangreen247/my-rxvt-config","last_synced_at":"2026-05-01T02:31:19.612Z","repository":{"id":153757187,"uuid":"225452411","full_name":"BeanGreen247/My-rxvt-config","owner":"BeanGreen247","description":"My configuration for the rxvt terminal. My new favorite terminal.","archived":false,"fork":false,"pushed_at":"2021-03-31T14:13:25.000Z","size":1884,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-24T05:41:42.982Z","etag":null,"topics":["beangreen247","colors","config","debian","linux","opensource","rxvt","rxvt-terminal","ubuntu","xresouces"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BeanGreen247.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2019-12-02T19:28:29.000Z","updated_at":"2021-03-31T14:13:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"6d747afd-437a-403b-8a40-4be2987407c4","html_url":"https://github.com/BeanGreen247/My-rxvt-config","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BeanGreen247/My-rxvt-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2FMy-rxvt-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2FMy-rxvt-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2FMy-rxvt-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2FMy-rxvt-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BeanGreen247","download_url":"https://codeload.github.com/BeanGreen247/My-rxvt-config/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2FMy-rxvt-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32483406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["beangreen247","colors","config","debian","linux","opensource","rxvt","rxvt-terminal","ubuntu","xresouces"],"created_at":"2024-11-07T03:12:24.383Z","updated_at":"2026-05-01T02:31:19.590Z","avatar_url":"https://github.com/BeanGreen247.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# My-rxvt-config\nMy configuration for the rxvt terminal\n![What it looks like](https://raw.githubusercontent.com/BeanGreen247/My-rxvt-config/master/screen.png)\n\n## Installation\nTo install rxvt run\n```bash\nsudo pacman -S rxvt-unicode wget\n```\nGet the config and apply it\n```bash\nwget -O ~/.Xresources https://raw.githubusercontent.com/BeanGreen247/dotfiles/master/rxvt/Xresources\nsudo xrdb -merge ~/.Xresources\n```\n## The config\n```bash\nURxvt.clipboard.autocopy: true\nURxvt.scrollBar: false\nURxvt.saveLines:10000\nURxvt.font: xft:Monospace:size=12\nURxvt.geometry: 100x35\nURxvt.letterSpace: -1\n\n! special\n*.foreground:   #919191\n*.background:   #000000\n*.cursorColor:  #919191\n\n! black\n*.color0:       #303030\n*.color8:       #5e5e5e\n\n! red\n*.color1:       #c10023\n*.color9:       #ff8781\n\n! green\n*.color2:       #a83334\n*.color10:      #ffa095\n\n! yellow\n*.color3:       #b51d2c\n*.color11:      #ff948b\n\n! blue\n*.color4:       #8c4b46\n*.color12:      #feb2aa\n\n! magenta\n*.color5:       #7d534f\n*.color13:      #ebbbb5\n\n! cyan\n*.color6:       #9a413d\n*.color14:      #ffaaa0\n\n! white\n*.color7:       #c6c6c6\n*.color15:      #ffffff\n\n!! Common Keybinds for Navigations\nURxvt.keysym.Shift-Up: command:\\033]720;1\\007\nURxvt.keysym.Shift-Down: command:\\033]721;1\\007\nURxvt.keysym.Control-Up: \\033[1;5A\nURxvt.keysym.Control-Down: \\033[1;5B\nURxvt.keysym.Control-Right: \\033[1;5C\nURxvt.keysym.Control-Left: \\033[1;5D\n\n!! Copy Paste \u0026 Other Extensions\nURxvt.perl-ext-common: default,clipboard,url-select,keyboard-select\nURxvt.copyCommand: xclip -i -selection clipboard\nURxvt.pasteCommand: xclip -o -selection clipboard\nURxvt.keysym.M-c: perl:clipboard:copy\nURxvt.keysym.M-v: perl:clipboard:paste\nURxvt.keysym.M-C-v: perl:clipboard:paste_escaped\nURxvt.keysym.M-Escape: perl:keyboard-select:activate\nURxvt.keysym.M-s: perl:keyboard-select:search\nURxvt.keysym.M-u: perl:url-select:select_next\nURxvt.urlLauncher: google-chrome-stable\nURxvt.underlineURLs: true\nURxvt.urlButton: 1\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeangreen247%2Fmy-rxvt-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeangreen247%2Fmy-rxvt-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeangreen247%2Fmy-rxvt-config/lists"}