diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 20:34:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 20:34:13 -0500 |
commit | 9ce4d53e789b5a3b3f521585a5a0ff62e341468b (patch) | |
tree | d267455e4f5814b7f8f5eae3f85636c90884bcfd /sway/config | |
parent | 9b5ac0868210dba6d296b10ce429ac6649ff2c0c (diff) | |
parent | ca0a75d5408125c4e2a9394fd1b08b7bbc4ff9c5 (diff) | |
download | sway-9ce4d53e789b5a3b3f521585a5a0ff62e341468b.tar.xz |
Merge pull request #3408 from RedSoxFan/bar-padding
swaybar: adjustable status padding
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/bar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/config/bar.c b/sway/config/bar.c index 670219f1..101562d1 100644 --- a/sway/config/bar.c +++ b/sway/config/bar.c @@ -106,6 +106,8 @@ struct bar_config *default_bar_config(void) { bar->verbose = false; bar->pid = 0; bar->modifier = get_modifier_mask_by_name("Mod4"); + bar->status_padding = 1; + bar->status_edge_padding = 3; if (!(bar->mode = strdup("dock"))) { goto cleanup; } |