CUTEkit turns a fresh Ubuntu 24.04 server into your terminal workspace with a single config file and a generated setup script. Shell hooks and post install notes are automatically generated, making post-install simple. System tools are installed via apt, while mise handles everything else, which means you can run bleeding-edge software on a rock-solid system. Install packages globally, or use per-directory versioning instead of messing with venv or docker to run a single program.
- Simple workflow - edit one config file, generate the setup script, run it, and start using the environment
- Reproducible setup - build the same workspace on any Ubuntu 24.04 LTS machine
- Easy to customize - add, remove, or adjust tools in the config without rewriting the script
- Shell setup in one place - collects init and PATH changes so shell config is one step
- Reference files - generates post-install notes and tool references in plain Markdown
- Practical install philosophy - apt for core system packages and mise for user-facing CLI and TUI tools gives you a solid foundation and up-to-date tools
- Ubuntu 24.04
- A non-root user with
sudo - Python 3 and
pyyaml
curl -L https://github.com/joshkaspar/cutekit/archive/refs/heads/main.tar.gz | tar -xz
cd cutekit-mainOpen 1-config.yaml and uncomment or add any tools you want. The config is the only file you need to edit and is well commented with examples for any type of install CUTEkit is capable of.
Examples:
- name: yazi
version: latest
- name: zoxide
backend: cargo
source: zoxide
version: latest
shell_setup:
- 'eval "$(zoxide init zsh)"'- zsh - shell
- zellij - terminal multiplexer with a built-in web server
- mise - runtime and tool version manager (Node, Rust, and CLI tools)
- atuin, fzf, navi, zoxide - shell productivity tools
- gh, lazygit, git-delta - git tooling
- glow, micro, yazi, bat, btop, ripgrep, visidata - TUI utilities
python3 2-generate.pyThis writes 3-setup.sh, ~/.config/mise/config.toml, .zshrc.setup, 4-post-install-steps.md, and tool-reference.md.
bash 3-setup.shRead 4-post-install-steps.md. It covers activating zsh as your default shell, enabling the Zellij web terminal, and hardening SSH after confirming key-based login works.