wye 0.1.1

Wye is reverse tee, simple multiplexer like tmux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod child;
pub mod config;
pub mod log;
pub mod parent;
pub mod term;

use std::{os::fd::OwnedFd, sync::OnceLock};

pub const WYE_SESSION_VAR: &str = "WYE";
const WYE_PIPE_DIR: &str = "/tmp";
const WYE_PIPE_PREFIX: &str = "wye";

static RESIZE_OUT: OnceLock<OwnedFd> = OnceLock::new();

const FALLBACK_SHELL: &str = "/bin/sh";