https://github.com/bjesus/putput
Putput is graphical interface for inputs and outputs from Linux pipes
https://github.com/bjesus/putput
Last synced: 5 months ago
JSON representation
Putput is graphical interface for inputs and outputs from Linux pipes
- Host: GitHub
- URL: https://github.com/bjesus/putput
- Owner: bjesus
- Created: 2025-05-16T14:58:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-16T17:33:12.000Z (about 1 year ago)
- Last Synced: 2026-02-18T00:21:26.098Z (5 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Putput
Putput pipes your input to your specified commands and shows their outputs. It is meant to be always on, toggled with a keybinding, and used best with a keyboard.

## Usage
Submit your input with Enter, and copy a specific result using its number, e.g. Ctrl+1.
## Configuration
Putput configuration will automatically be created at `~/.config/putput/config.toml`. It allows you to customize the app name, the commands array, and and whether to run the commands on every change automatically or not.
```toml
run_commands_on_change = false
title = "Taylor"
commands = [
"trans --indent 0 --brief :sv",
"trans --indent 0 --brief :en",
"trans --indent 0 --brief :he --no-bidi",
"wc",
]
```
## Installation
### Compiling manually
- `git clone` the repository
- Run `cargo build --release`