mirror of
https://github.com/labwc/labwc.git
synced 2026-02-21 01:40:26 -05:00
cycle: add <action name="NextWindow" output="" and identifier="">
Some checks failed
labwc.github.io / notify (push) Has been cancelled
Some checks failed
labwc.github.io / notify (push) Has been cancelled
output="all|focused|cursor" filters windows by the output they are on. identifier="all|current" filters windows by their app-id.
This commit is contained in:
parent
a5c6ff499c
commit
610d869561
6 changed files with 61 additions and 3 deletions
|
|
@ -128,4 +128,9 @@ enum cycle_output_filter {
|
|||
CYCLE_OUTPUT_FOCUSED,
|
||||
};
|
||||
|
||||
enum cycle_app_id_filter {
|
||||
CYCLE_APP_ID_ALL,
|
||||
CYCLE_APP_ID_CURRENT,
|
||||
};
|
||||
|
||||
#endif /* LABWC_CONFIG_TYPES_H */
|
||||
|
|
|
|||
|
|
@ -45,6 +45,8 @@ struct cycle_osd_field {
|
|||
|
||||
struct cycle_filter {
|
||||
enum cycle_workspace_filter workspace;
|
||||
enum cycle_output_filter output;
|
||||
enum cycle_app_id_filter app_id;
|
||||
};
|
||||
|
||||
struct buf;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue