From e200b2e12f51ff49d80972e77690ddcde086b229 Mon Sep 17 00:00:00 2001 From: Kris Yotam <75515498+krisyotam@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:20:54 -0500 Subject: [PATCH] add README.md --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..485d63dae4ee310ff11927342282a001715053e4 --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# tabbed + +Kris's build of tabbed -- a generic tabbed interface for X11 from suckless.org. + +tabbed is a simple container that manages X windows as tabs. It is commonly used with surf (tabbed browsing) and st (tabbed terminals). + +## Usage + +```sh +# Tabbed surf browser +tabbed -c surf -e + +# Tabbed terminal +tabbed -c st -w +``` + +## Keybindings + +| Key | Action | +|-----|--------| +| Ctrl+Shift+Return | New tab | +| Ctrl+Shift+h/l | Rotate tabs | +| Ctrl+Shift+j/k | Move tab | +| Ctrl+Tab | Next tab | +| Ctrl+1-9 | Jump to tab | +| Ctrl+q | Close tab | +| F11 | Fullscreen | + +## Configuration + +Edit `config.h` for colors, fonts, tab width, and keybindings. Rebuild after changes. + +## Requirements + +Xlib header files. + +## Installation + +```sh +make clean install +```