{"id":20341289,"url":"https://github.com/pomdtr/tweety","last_synced_at":"2025-04-07T05:10:05.033Z","repository":{"id":167555765,"uuid":"643175948","full_name":"pomdtr/tweety","owner":"pomdtr","description":"An integrated terminal for your browser","archived":false,"fork":false,"pushed_at":"2025-02-27T16:23:50.000Z","size":4031,"stargazers_count":93,"open_issues_count":3,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-31T04:06:42.132Z","etag":null,"topics":["arc-browser","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","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/pomdtr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","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":"2023-05-20T10:36:29.000Z","updated_at":"2025-03-18T19:40:04.000Z","dependencies_parsed_at":"2024-01-27T20:33:14.210Z","dependency_job_id":"878bc821-6348-461f-8a82-0fdc0630def0","html_url":"https://github.com/pomdtr/tweety","commit_stats":null,"previous_names":["pomdtr/webterm","pomdtr/wesh","pomdtr/popcorn","pomdtr/tweety"],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomdtr%2Ftweety","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomdtr%2Ftweety/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomdtr%2Ftweety/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomdtr%2Ftweety/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pomdtr","download_url":"https://codeload.github.com/pomdtr/tweety/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247595334,"owners_count":20963943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["arc-browser","terminal"],"created_at":"2024-11-14T21:26:44.784Z","updated_at":"2025-04-07T05:10:04.980Z","avatar_url":"https://github.com/pomdtr.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Tweety - An Integrated Terminal for your Browser\n\nMinimize your context switching by interacting with your terminal directly from your browser.\n\n## Features\n\n### Mix Web and Terminal Tabs\n\n![tweety running from the browser](./static/tabs.png)\n\n### Side by Side Mode\n\n![tweety running in a split pane](./static/panel.png)\n\n### Developer-Console Integration\n\n![tweety running in the developer panel](./static/devtools.png)\n\n## Installation\n\nTweety is available on macOS, Linux.\n\n```sh\n# Homebrew (recommended)\nbrew install pomdtr/tap/tweety\n```\n\nor download a binary from [releases](https://github.com/pomdtr/tweety/releases).\n\nIf you want to compile it yourself, you can use the following command:\n\n```sh\ngit clone https://github.com/pomdtr/tweety\ncd tweety\nmake install\n```\n\nSee the `tweety completion` command to generate completion scripts for your shell.\n\n## Usage\n\n```sh\ntweety [-p \u003cport\u003e]\n```\n\nBy default, tweety will start on port 9999, so you can access it at \u003chttp://localhost:9999\u003e.\n\n## Browser Extension\n\nBrowser extensions for Chrome and Firefox are available in the `extension` folder.\n\n## Chrome Extension\n\n- Clone the repository\n- Go to `chrome://extensions`\n- Enable `Developer mode`\n- Click on `Load unpacked`\n- Select the `extension/chrome` folder\n\nBy default, the extension will try to connect to `localhost:9999`. You can\ncustomize the origin in the extension options.\n\n## Firefox Extension\n\n- Clone the repository\n- Go to `about:debugging\n- Click on `This Firefox`\n- Click on `Load Temporary Add-on...`\n- Select the `extension/firefox/manifest.json` file\n\n## Starting Tweety on Boot\n\nIf you have installed Tweety using Homebrew, you can use the following command:\n\n```sh\nbrew services start tweety\n```\n\nTo unload the service, use:\n\n```sh\nbrew services stop tweety\n```\n\n## Configuration\n\nUse the `$XDG_CONFIG_DIR/tweety/tweety.json` file to configure Tweety (defaults\nto `~/.config/tweety/tweety.json`).\n\nAlternatively, you can use the `TWEETY_CONFIG` environment variable to specify a\ncustom path.\n\n```json\n{\n  \"$schema\": \"https://github.com/pomdtr/tweety/releases/latest/download/config.schema.json\",\n  \"theme\": \"Tomorrow\",\n  \"themeDark\": \"Tomorrow Night\",\n  \"xterm\": {\n    \"fontSize\": 14,\n  },\n  \"env\": {\n    \"EDITOR\": \"kak\"\n  },\n  \"defaultProfile\": \"default\",\n  \"profiles\": {\n    \"default\": {\n      \"command\": \"bash\",\n      \"args\": [\"--login\"],\n      \"env\": {\n        \"EDITOR\": \"vim\"\n      }\n    },\n    \"fish\": {\n      \"command\": \"fish\",\n      \"args\": [\"--login\"],\n      \"favicon\": \"https://fishshell.com/favicon.ico\"\n    }\n  }\n}\n```\n\nThe `xterm` section is passed directly to xterm.js, see the [documentation](https://xtermjs.org/docs/api/terminal/interfaces/iterminaloptions/).\n\n## Endpoints\n\n- `/` - open the default profile\n- `/?reload=true` - reload the page when the command exits\n- `/?profile=\u003cprofile\u003e` - open a specific profile\n\n## FAQ\n\n### Windows Version?\n\nThe [package](https://github.com/creack/pty) used to create the terminal UI does not support Windows.\n\nBut it's planned, so stay tuned! In the meantime, you can run tweety from [WSL](https://learn.microsoft.com/en-us/windows/wsl/install).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpomdtr%2Ftweety","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpomdtr%2Ftweety","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpomdtr%2Ftweety/lists"}