Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anki-code/xonsh-prewarmed

Run interactive xonsh shell session in milliseconds using prewarmed session from the background.
https://github.com/anki-code/xonsh-prewarmed

gnu-screen tmux tmux-plugin xonsh xontrib

Last synced: 28 days ago
JSON representation

Run interactive xonsh shell session in milliseconds using prewarmed session from the background.

Awesome Lists containing this project

README

        


xonsh-prewarmed is to run interactive xonsh session in milliseconds using prewarmed session from the background screen.


If you like the idea click ⭐ on the repo and and tweet.

## How it works

On first run of `xonsh-prewarmed-*` script it creates additional reserved xonsh session in the background. On the next runs of the script it uses the reserved sessions and create new reserved sessions in the background. As result the speed of run the new interactive xonsh sessions is milliseconds.

Supported screen managers:
* [GNU Screen](https://www.gnu.org/software/screen/)
* [Tmux](https://github.com/tmux/tmux/wiki)

## Installation

```xsh
wget https://raw.githubusercontent.com/anki-code/xonsh-prewarmed/main/xonsh-prewarmed-screen
wget https://raw.githubusercontent.com/anki-code/xonsh-prewarmed/main/xonsh-prewarmed-tmux
chmod +x xonsh-prewarmed-*
```

## Usage

GNU Screen:
```xsh
./xonsh-prewarmed-screen
```
Tmux:
```xsh
./xonsh-prewarmed-tmux
```

### Detect that xonsh was prewarmed

Use `XONSH_PREWARMED` environment variable to detect that xonsh was prewarmed in `~/.xonshrc`:

```xsh
if __xonsh__.env.get('XONSH_PREWARMED', False):
print('This xonsh session was prewarmed!')
```

## Cheatsheet

### GNU Screen

Basics:

* When you run `screen` the new session will be started and your current terminal will be attached to it.
* You can put the screen session to background by pressing `Ctrl + a` and then press `d`. After this your terminal will be detached from the session but the session will stay active in background.
* Run `screen -ls` to get list of all sessions. The `sess_id` is the number before dot.
* Run `screen -r ` to attach `Detached` session to the current terminal.
* Run `screen -rd ` to detach the `Attached` session and attach to the current terminal.
* Run `env | grep STY` to get current `sess_id`.

## Add another session manager

Feel free to add another session manager (e.g. `zellij`) by creating `xonsh-prewarmed-`.