{"id":20048434,"url":"https://github.com/aggstam/stabbed","last_synced_at":"2026-02-05T22:03:32.361Z","repository":{"id":195372255,"uuid":"692786203","full_name":"aggstam/stabbed","owner":"aggstam","description":"Very simple script invoking suckless tabbed with st, resulting in a terminal with tabs support built-in.","archived":false,"fork":false,"pushed_at":"2025-11-30T14:53:14.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-02T21:37:04.777Z","etag":null,"topics":["suckless","suckless-st","tabbed","terminal-emulator"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/aggstam.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":"2023-09-17T15:24:13.000Z","updated_at":"2025-11-30T14:53:18.000Z","dependencies_parsed_at":"2023-09-17T17:38:02.612Z","dependency_job_id":"b381e3c2-2fac-4ee3-a474-d57928eb4c49","html_url":"https://github.com/aggstam/stabbed","commit_stats":null,"previous_names":["aggstam/stabbed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aggstam/stabbed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fstabbed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fstabbed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fstabbed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fstabbed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aggstam","download_url":"https://codeload.github.com/aggstam/stabbed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fstabbed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29135939,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T21:59:57.939Z","status":"ssl_error","status_checked_at":"2026-02-05T21:59:57.628Z","response_time":65,"last_error":"SSL_read: 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":["suckless","suckless-st","tabbed","terminal-emulator"],"created_at":"2024-11-13T11:43:51.479Z","updated_at":"2026-02-05T22:03:32.355Z","avatar_url":"https://github.com/aggstam.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# stabbed ![Screenshot](stabbed-icon.png)\nstabbed is a very simple script invoking [suckless](https://suckless.org/) [tabbed](https://tools.suckless.org/tabbed/) with [st](https://st.suckless.org/),\nresulting in a terminal with tabs support built-in.\n\u003cbr\u003e\nPatches and custom configuration are provided to achieve the desired behavior.\n\n## Requirements\nIn order to build both tabbed and st, you need the Xlib header files.\n\u003cbr\u003e\nAlpha patch(opacity) requires an X composite manager (e.g. xcompmgr, picom).\n\n## Patches\n### tabbed\nA custom patch has been created, to work with latest master, combining the following patches:\n1. [alpha](https://tools.suckless.org/tabbed/patches/alpha/)\n2. [drag](https://tools.suckless.org/tabbed/patches/drag/)\n\n### st\nA custom patch has been created, to work with latest master, combining the following patches:\n1. [alpha](https://st.suckless.org/patches/alpha/)\n2. [blinking cursor](https://st.suckless.org/patches/blinking_cursor/)\n3. [bold is not bright](https://st.suckless.org/patches/bold-is-not-bright/)\n4. [scrollback](https://st.suckless.org/patches/scrollback/)\n5. [scrollback-ringbuffer](https://st.suckless.org/patches/scrollback/st-scrollback-ringbuffer-0.8.5.diff)\n6. [scrollback-mouse](https://st.suckless.org/patches/scrollback/st-scrollback-mouse-20220127-2c5edf2.diff)\n7. [scrollback-mouse-altscreen](https://st.suckless.org/patches/scrollback/st-scrollback-mouse-altscreen-20220127-2c5edf2.diff)\n8. [simple-plumb](https://st.suckless.org/patches/right_click_to_plumb/simple_plumb-0.8.5.diff)\n9. [universcroll](https://st.suckless.org/patches/universcroll/)\n\n## Build\nOn first pull, we have to also pull suckless repos, so execute:\n```shell\n$ git submodule update --init\n```\nThen, you can build everything using the provided makefile:\n```shell\n$ make\n```\nThis will first apply all patches and then build tabbed, st and stabbed inside project folder.\n\n## Execution\nTo run stabbed, you have to first give the corresponding permissions to the script, and then execute it:\n```shell\n$ chmod a+x stabbed\n$ ./stabbed\n```\n\n## Installation\nTo install the script into your system, simply execute:\n```shell\n$ make install\n```\nIf you also want to generate and install a .desktop file for the script, execute:\n```shell\n$ make desktop\n```\nOr in a single command:\n```shell\n$ make install desktop\n```\nThese commands will *NOT* install tabbed or st in your system, as the script uses the patched ones from the project folder.\n\n## Usage\nStabbed is configured to use `zsh` as default shell.\n\u003cbr\u003e\nYou can use a different shell using `SHELL={shell}` make flag.\n\u003cbr\u003e\nTo configure opacity, use `OPACITY={value}` make flag.\n\u003cbr\u003e\nThis is our custom key bindings configuration for stabbed:\n| Key                 | Action                        |\n|---------------------|-------------------------------|\n| Ctrl+Shift+t        | Spawn new tab                 |\n| Ctrl+PageUp         | Go to previous tab            |\n| Ctrl+PageDown       | Go to next tab                |\n| Ctrl+Shift+PageUp   | Move tab to previous position |\n| Ctrl+Shift+PageDown | Move tab to next position     |\n| Shift+PageUp        | Scroll up                     |\n| Shift+PageDown      | Scroll down                   |\n| Ctrl+Minus          | Zoom out                      |\n| Ctrl+Shift+Plus     | Zoom in                       |\n\n### Plumber\nA custom plumber script is provided, which is invoked using mouse Button3(right click) for highlighted selection.\n\u003cbr\u003e\nSofrware used by the plumber:\n1. [feh](https://feh.finalrewind.org/)\n2. [mpv](https://mpv.io/)\n3. [hurl](https://codemadness.org/git/hurl/) (requires lbtls-devel)\n4. [imagemagick](https://imagemagick.org/)\n5. [sacc](https://codemadness.org/git/sacc/) (requires lbtls-devel)\n6. [firefox](https://www.mozilla.org/en-US/firefox/new/) or any of its forks\n\nYou can configure the script to use different software and/or expand its capabilities.\n\n## Credits\nMassive thanks to the suckless team for making software that sucks less.\n\u003cbr\u003e\nOriginal plumber script was kindly provided by [parazyd](https://github.com/parazyd).\n\u003cbr\u003e\nStabbed custom icon uses a vector kindly provided from List Heist.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Fstabbed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faggstam%2Fstabbed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Fstabbed/lists"}