mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 15:35:58 +01:00
man: add entry for chooser_cmd and chooser_type
This commit is contained in:
parent
9d78b21695
commit
d556426359
1 changed files with 33 additions and 1 deletions
|
@ -27,6 +27,8 @@ output_name=HDMI-A-1
|
||||||
max_fps=30
|
max_fps=30
|
||||||
exec_before=disable_notifications.sh
|
exec_before=disable_notifications.sh
|
||||||
exec_after=enable_notifications.sh
|
exec_after=enable_notifications.sh
|
||||||
|
chooser_type=simple
|
||||||
|
chooser_cmd="slurp -f %o -o"
|
||||||
```
|
```
|
||||||
|
|
||||||
# SCREENCAST OPTIONS
|
# SCREENCAST OPTIONS
|
||||||
|
@ -36,7 +38,7 @@ These options need to be placed under the **[screencast]** section.
|
||||||
**output_name** = _name_
|
**output_name** = _name_
|
||||||
Select which output will be screencast.
|
Select which output will be screencast.
|
||||||
|
|
||||||
By default, an arbitrary output is selected. The list of available outputs
|
This option is used with **chooser_type** = none. The list of available outputs
|
||||||
can be obtained via **wayland-info**(1) (under the _zxdg_output_manager_v1_
|
can be obtained via **wayland-info**(1) (under the _zxdg_output_manager_v1_
|
||||||
section).
|
section).
|
||||||
|
|
||||||
|
@ -52,6 +54,36 @@ These options need to be placed under the **[screencast]** section.
|
||||||
**exec_after** = _command_
|
**exec_after** = _command_
|
||||||
Execute _command_ after ending all screencasts. The command will be executed within sh.
|
Execute _command_ after ending all screencasts. The command will be executed within sh.
|
||||||
|
|
||||||
|
**chooser_cmd** = _command_
|
||||||
|
Run this command to select an output.
|
||||||
|
|
||||||
|
For more details see **OUTPUT CHOOSER**.
|
||||||
|
|
||||||
|
**chooser_type** = _type_
|
||||||
|
Specifies the input send to the chooser.
|
||||||
|
|
||||||
|
The supported types are:
|
||||||
|
- default: xdpw will try to use the first chooser found in the list of hardcoded choosers
|
||||||
|
(slurp, wofi, bemenu) and will fallback to an arbitrary output if none of those were found.
|
||||||
|
- none: xdpw will allow screencast either on the output given by **output_name**, or if empty
|
||||||
|
an arbitrary output without further interaction.
|
||||||
|
- simple, dmenu: xdpw will launch the chooser given by **chooser_cmd**. For more details
|
||||||
|
see **OUTPUT CHOOSER**.
|
||||||
|
|
||||||
|
## OUTPUT CHOOSER
|
||||||
|
|
||||||
|
The chooser can be any program or script with the following behaviour:
|
||||||
|
- It returns any error code except 127. The error code 127 is internally used to signal
|
||||||
|
that no command could be found and all output from it will be ignored.
|
||||||
|
- It returns the name of a valid output on stdout as given by **wayland-info**(1).
|
||||||
|
Everything else will be handled as declined by the user.
|
||||||
|
- To signal that the user has declined screencast, the chooser should exit without
|
||||||
|
anything on stdout.
|
||||||
|
|
||||||
|
Supported types of choosers via the **chooser_type** option:
|
||||||
|
- simple: the chooser is just called without anything further on stdin.
|
||||||
|
- dmenu: the chooser receives a newline separated list (dmenu style) of outputs on stdin.
|
||||||
|
|
||||||
# SEE ALSO
|
# SEE ALSO
|
||||||
|
|
||||||
**pipewire**(1)
|
**pipewire**(1)
|
||||||
|
|
Loading…
Reference in a new issue