awesome-launch/README.md

96 lines
2.1 KiB
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).
2019-07-04 01:29:58 +02:00
## Dependencies
* [uuid](https://luarocks.org/modules/tieske/uuid) rock
* [wm-launch](https://github.com/jcrd/wm-launch)
2019-07-04 23:46:05 +02:00
## Installation
```
$ git clone https://github.com/jcrd/awesome-launch.git
$ cd awesome-launch
2019-08-22 21:39:37 +02:00
$ luarocks make --local rockspec/awesome-launch-devel-1.rockspec
2019-07-04 23:46:05 +02:00
```
2019-03-28 15:39:13 +01:00
## 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
2019-08-14 02:52:22 +02:00
## Widget
A `launchbar` widget is provided to visualize pending clients.
Customize the launchbar:
```lua
launch.widget.color = beautiful.fg_focus
```
Create a new launchbar for the given screen:
```lua
screen.connect_signal("request::desktop_decoration", function (s)
...
s.launchbar = launch.widget.launchbar {
screen = s,
}
s.mywibox:setup {
...
s.launchbar,
...
}
end)
```
2019-08-31 01:09:49 +02:00
## Command-line client
`awesome-launch` is a wrapper around `awesome-client` that can be used to
launch clients from the command line with single instance IDs tracked by
Awesome.
### Usage
```
usage: awesome-launch [options] COMMAND...
options:
-h Show help message
-j Launch with firejail
-f FACTORY Launch via a window factory
-i ID The single instance ID to use
-s Spawn if not already running
-r Raise or spawn
```
Enable use of `awesome-client` by including the following in `rc.lua`:
```lua
require("awful.remote")
```
If installed via `luarocks`, ensure `awesome-launch`'s [location][1] is in your
`PATH`.
[1]: https://github.com/luarocks/luarocks/wiki/File-locations#Path_where_commandline_scripts_are_installed
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)).