awesome-launch/README.md

29 lines
714 B
Markdown
Raw Normal View History

2019-03-28 15:39:13 +01:00
# awesome-launch
awesome-launch is a library for [Awesome](https://github.com/awesomeWM/awesome)
window manager that provides functions to spawn clients with single instance
IDs using [wm-launch](https://github.com/jcrd/wm-launch).
## Usage
Require the library:
```lua
local launch = require("awesome-launch")
```
Now spawn a client:
```lua
launch.spawn("xterm", {id="xterm1"})
```
The new client will have these properties set:
* `single_instance_id` = `"xterm1"`
* `cmdline` = `"xterm"`
2019-04-11 05:12:54 +02:00
See the [API documentation](https://jcrd.github.io/awesome-launch/) for
descriptions of all functions.
2019-03-28 15:39:13 +01:00
## License
awesome-launch is licensed under the GNU General Public License v3.0 or later
(see [LICENSE](LICENSE)).