mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -05:00
Merge pull request #3408 from RedSoxFan/bar-padding
swaybar: adjustable status padding
This commit is contained in:
commit
9ce4d53e78
13 changed files with 89 additions and 9 deletions
|
|
@ -198,6 +198,8 @@ sway_cmd bar_cmd_id;
|
|||
sway_cmd bar_cmd_position;
|
||||
sway_cmd bar_cmd_separator_symbol;
|
||||
sway_cmd bar_cmd_status_command;
|
||||
sway_cmd bar_cmd_status_edge_padding;
|
||||
sway_cmd bar_cmd_status_padding;
|
||||
sway_cmd bar_cmd_pango_markup;
|
||||
sway_cmd bar_cmd_strip_workspace_numbers;
|
||||
sway_cmd bar_cmd_strip_workspace_name;
|
||||
|
|
|
|||
|
|
@ -232,6 +232,8 @@ struct bar_config {
|
|||
bool verbose;
|
||||
struct side_gaps gaps;
|
||||
pid_t pid;
|
||||
int status_padding;
|
||||
int status_edge_padding;
|
||||
struct {
|
||||
char *background;
|
||||
char *statusline;
|
||||
|
|
|
|||
|
|
@ -43,6 +43,8 @@ struct swaybar_config {
|
|||
struct wl_list outputs; // config_output::link
|
||||
bool all_outputs;
|
||||
int height;
|
||||
int status_padding;
|
||||
int status_edge_padding;
|
||||
struct {
|
||||
int top;
|
||||
int right;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue