mirror of
https://github.com/swaywm/sway.git
synced 2026-04-26 06:46:26 -04:00
Merge remote-tracking branch 'upstream/master' into master
This commit is contained in:
commit
0dc19521ca
15 changed files with 142 additions and 23 deletions
|
|
@ -232,6 +232,7 @@ sway_cmd bar_cmd_unbindcode;
|
|||
sway_cmd bar_cmd_unbindsym;
|
||||
sway_cmd bar_cmd_wrap_scroll;
|
||||
sway_cmd bar_cmd_workspace_buttons;
|
||||
sway_cmd bar_cmd_workspace_min_width;
|
||||
|
||||
sway_cmd bar_colors_cmd_active_workspace;
|
||||
sway_cmd bar_colors_cmd_background;
|
||||
|
|
|
|||
|
|
@ -322,6 +322,7 @@ struct bar_config {
|
|||
struct side_gaps gaps;
|
||||
int status_padding;
|
||||
int status_edge_padding;
|
||||
uint32_t workspace_min_width;
|
||||
struct {
|
||||
char *background;
|
||||
char *statusline;
|
||||
|
|
|
|||
|
|
@ -162,6 +162,7 @@ struct sway_xwayland_view {
|
|||
struct wl_listener map;
|
||||
struct wl_listener unmap;
|
||||
struct wl_listener destroy;
|
||||
struct wl_listener override_redirect;
|
||||
};
|
||||
|
||||
struct sway_xwayland_unmanaged {
|
||||
|
|
@ -176,6 +177,7 @@ struct sway_xwayland_unmanaged {
|
|||
struct wl_listener map;
|
||||
struct wl_listener unmap;
|
||||
struct wl_listener destroy;
|
||||
struct wl_listener override_redirect;
|
||||
};
|
||||
#endif
|
||||
struct sway_view_child;
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ struct swaybar_config {
|
|||
bool binding_mode_indicator;
|
||||
bool wrap_scroll;
|
||||
bool workspace_buttons;
|
||||
uint32_t workspace_min_width;
|
||||
list_t *bindings;
|
||||
struct wl_list outputs; // config_output::link
|
||||
int height;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue