Metadata-Version: 2.1
Name: riverwm-utils
Version: 0.0.2
Summary: Utilities for the River Wayland compositor
Home-page: https://github.com/NickHastings/riverwm-utils
Author: Nick Hastings
Author-email: nicholaschastings@gmail.com
License: GPLv3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pywayland (>=0.4.7)

# riverwm-utils
Utilities for the River Wayland compositor. Currently just one utility is included.

## Install

### Development version
Clone the repository:
```
git clone https://github.com/NickHastings/riverwm-utils.git
```
Install locally with pip
```
python3 -m pip install ./riverwm-utils
```
### Stable realeases
```
python3 -m pip install riverwm-utils
```

## Usage

# cycle-focused-tags
The script takes two arguments: the first being the direction next|previous, the second being the maximum number of tags at which the cycling should wrap back to the first tag (or to the last tag from the first tag).
The script can be called using spawn in the users init file. For example:
```
riverctl map normal Mod4 Up spawn "cycle-focused-tags previous 9"
riverctl map normal Mod4 Down spawn "cycle-focused-tags next 9"
```


