Add note in readme about not specifying workspaces.

This commit is contained in:
redxef 2022-10-29 02:09:02 +02:00
parent 9f4853485d
commit c10b9fdb66
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921

View file

@ -23,6 +23,8 @@ Run multiple programs by specifying a yaml list of the form:
signal_continue: <a signal number upon which to move on to the next program, optional> signal_continue: <a signal number upon which to move on to the next program, optional>
``` ```
Not specifying a workspace implies that the program won't spawn a window.
## Installing ## Installing
Use the makefile: `INSTALL_BASE=/usr/local/ make install` or install all dependencies Use the makefile: `INSTALL_BASE=/usr/local/ make install` or install all dependencies
@ -76,11 +78,9 @@ This could be combined with waybar to enforce an ordering of tray applications:
```yaml ```yaml
- program: 'nm-applet --indicator' - program: 'nm-applet --indicator'
filter: '(False)' filter: '(False)'
workspace: -1
signal_continue: 10 signal_continue: 10
- program: 'blueman-applet' - program: 'blueman-applet'
filter: '(False)' filter: '(False)'
workspace: -1
signal_continue: 10 signal_continue: 10
- ... - ...
``` ```