Skip to content

Commit f07d0cf

Browse files
committed
Update readme, description/summary
1 parent 8bc2487 commit f07d0cf

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
tmuxp, a novel approach to manage `tmux(1)`_ (>= 1.8) workspaces through
2-
`python objects`_, JSON or YAML.
1+
tmuxp, tmux session manager. built on `libtmux`_.
32

43
|pypi| |docs| |build-status| |coverage| |license|
54

@@ -36,7 +35,7 @@ Save as ``mysession.yaml``. And load:
3635
3736
$ tmuxp load ./mysession.yaml
3837
39-
See more `simple`_ or `very elaborate`_ config examples.
38+
`simple`_, `very elaborate`_ config examples
4039

4140
Store configs in (``~/.tmuxp``) or include in your project as
4241
``~/.tmuxp.{yaml,json}``. See `author's tmuxp configs`_ and the
@@ -47,7 +46,6 @@ bootstrap project dependencies before loading tmux. See the
4746

4847
Load sessions in the background by passing ``-d`` flag
4948

50-
5149
Freeze a tmux session
5250
---------------------
5351

@@ -90,6 +88,7 @@ Want to learn more about tmux itself? Read `The Tao of Tmux`_.
9088
.. _very elaborate: http://tmuxp.readthedocs.org/en/latest/examples.html#super-advanced-dev-environment
9189
.. _Quickstart: http://tmuxp.readthedocs.org/en/latest/quickstart.html
9290
.. _Commands: http://tmuxp.readthedocs.org/en/latest/cli.html
91+
.. _libtmux: https://github.com/tony/libtmux
9392

9493
Project details
9594
---------------

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
"""tmuxp lives at <https://github.com/tony/tmuxp>.
2-
3-
tmuxp
4-
-----
5-
6-
Manage tmux workspaces from JSON and YAML, pythonic API, shell completion.
7-
8-
"""
1+
"""tmuxp lives at <https://github.com/tony/tmuxp>."""
92
import sys
103

114
from setuptools import setup

tmuxp/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = 'tmuxp'
22
__package_name__ = 'tmuxp'
33
__version__ = '0.11.0'
4-
__description__ = 'Save and load tmux sessions thru JSON, YAML configs. Control tmux through Python objects.'
4+
__description__ = 'tmux session manager'
55
__email__ = 'tony@git-pull.com'
66
__author__ = 'Tony Narlock'
77
__license__ = 'BSD'

tmuxp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
"""Manage tmux workspaces from JSON and YAML, pythonic API, shell completion.
2+
"""tmux session manager.
33
44
tmuxp
55
~~~~~

0 commit comments

Comments
 (0)