Skip to content

Commit c146146

Browse files
committed
add pymux starter page
1 parent f89ee1b commit c146146

File tree

4 files changed

+52
-2
lines changed

4 files changed

+52
-2
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
title: Pymux
2+
category: page
3+
slug: pymux
4+
sortorder: 0214
5+
toc: False
6+
sidebartitle: Pymux
7+
meta: Pymux is a terminal multiplexer implementation written entirely in Python that clones tmux.
8+
9+
10+
# Pymux
11+
[Pymux](https://pypi.python.org/pypi/pymux)
12+
([source code](https://github.com/jonathanslenders/pymux)) is a
13+
[terminal multiplexer](/terminal-multiplexers.html) implementation
14+
written in Python that clones the functionality of [tmux](/tmux.html).
15+
Like tmux and [Screen](/screen.html), Pymux makes it easier for
16+
programmers to use many shells within a single terminal window during
17+
development.
18+
19+
Pymux is less frequently used than tmux but it can be useful if you
20+
want to customize your own terminal multiplexer environment using
21+
Python rather than digging into tmux's C code base.
22+
23+
<a href="https://pypi.python.org/pypi/pymux" style="border:none"><img src="/img/visuals/pymux.png" width="100%" alt="Screenshot of Pymux running with multiple shell sessions." class="shot outl"></a>
24+
25+
<div class="well see-also">Pymux is an implementation of the <a href="/terminal-multiplexers.html">terminal multiplexers</a> concept. Learn more in the <a href="/development-environments.html">development environments</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
26+
27+
### Pymux resources
28+
* [Pymux, tmux clone in Python](http://blog.yjl.im/2016/01/pymux-tmux-clone-in-python.html)
29+
30+
* [Pymux and tmux performance comparison](http://blog.yjl.im/2016/01/pymux-and-tmux-performance-comparison.html)
31+
32+
* [Pymux discussion on Hacker News](https://news.ycombinator.com/item?id=10831149)

static/img/visuals/pymux.png

201 KB
Loading

theme/templates/choices/pymux.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<h3>Learn about web development next or databases?</h3>
2+
<div class="row">
3+
<div class="c4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/web-frameworks.html" %}
6+
</div>
7+
</div>
8+
<div class="c4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/databases.html" %}
11+
</div>
12+
</div>
13+
<div class="c4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/data.html" %}
16+
</div>
17+
</div>
18+
</div>

theme/templates/table-of-contents.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ <h4>2.2 <a href="/shells.html">Shells</a></h4>
4141
<div class="tc"><a href="/powershell.html">PowerShell</a></div>
4242
<h4>2.3 <a href="/terminal-multiplexers.html">Terminal multiplexers</a></h4>
4343
<div class="tc"><a href="/tmux.html">tmux</a></div>
44-
<div class="tc sn">screen</div>
45-
<div class="tc sn">pymux</div>
44+
<div class="tc"><a href="/screen.html">Screen</a></div>
45+
<div class="tc"><a href="/pymux.html">Pymux</a></div>
4646
<h4>2.4 <span class="sn">Environment configuration</span></h4>
4747
<div class="tc"><a href="/application-dependencies.html">Application dependencies</a></div>
4848
<div class="tc sn">virtual environments (virtualenv)</div>

0 commit comments

Comments
 (0)