mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -05:00
Implement bar bindsym
This commit is contained in:
parent
e143c9613d
commit
1c969e86f5
10 changed files with 172 additions and 2 deletions
|
|
@ -239,6 +239,12 @@ struct bar_config {
|
|||
} colors;
|
||||
};
|
||||
|
||||
struct bar_binding {
|
||||
uint32_t button;
|
||||
bool release;
|
||||
char *command;
|
||||
};
|
||||
|
||||
struct border_colors {
|
||||
float border[4];
|
||||
float background[4];
|
||||
|
|
@ -527,6 +533,8 @@ struct bar_config *default_bar_config(void);
|
|||
|
||||
void free_bar_config(struct bar_config *bar);
|
||||
|
||||
void free_bar_binding(struct bar_binding *binding);
|
||||
|
||||
void free_workspace_config(struct workspace_config *wsc);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue