No description
This repository has been archived on 2026-07-12. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • Go 96.6%
  • Lua 3.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-15 09:06:44 -07:00
.opencode chore: sync residual agent and skill configs 2026-06-14 03:09:01 +01:00
cmd/res-console fix: replace residual-console with res-console in error/version strings 2026-06-15 07:59:50 -07:00
config chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
script fix: refactor menu_settings to use script.Store 2026-06-15 09:06:44 -07:00
widgets init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
.gitignore chore: add .gitignore 2026-06-08 18:02:11 -07:00
go.mod init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
go.sum init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
input.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
LICENSE chore: add MIT license 2026-06-15 06:21:33 -07:00
menu.go fix: refactor menu_settings to use script.Store 2026-06-15 09:06:44 -07:00
menu_apps.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_help.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_main.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_settings.go fix: refactor menu_settings to use script.Store 2026-06-15 09:06:44 -07:00
model.go fix: refactor menu_settings to use script.Store 2026-06-15 09:06:44 -07:00
mux.go fix: refactor menu_settings to use script.Store 2026-06-15 09:06:44 -07:00
mux_scroll.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
mux_widgets.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
proc.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
README docs: add README 2026-04-15 20:50:37 -07:00
statusbar.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
tab.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
widgets.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00

residual/console
================

PTY multiplexer and primary terminal environment for residual.

packages:
  console/        mux, tabs, statusbar, menus, widget system, input handling.
                  uses raw I/O — not bubbletea — for full PTY pass-through.
  console/script/ lua scripting engine (gopher-lua). powers widgets and hooks.

widgets (lua):
  widgets/        built-in status bar widgets: clock, battery, memory, network,
                  brightness, storage, user, spacer.

binary:
  res-console     multi-tab PTY multiplexer with lua-extensible status bar.
                  keybindings: see docs/keymap.md in residual/core.
                  scripting:   see docs/scripting.md in residual/core.
                  usage: res-console [-shell path]

build:
  go build ./cmd/res-console

module:   git.merith.xyz/residual/console
requires: git.merith.xyz/residual/core, git.merith.xyz/residual/shell