sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d855837da2e95672b313bbb6c123ce4f58a14460
parent 0a4735c50cbdb7cc60f8cdf1d0240bda37d63033
Author: Connor E <38229097+c-edw@users.noreply.github.com>
Date:   Fri, 19 Oct 2018 16:38:01 +0100

Change initial background mode before arg parse.

Diffstat:
Mswaylock/main.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/swaylock/main.c b/swaylock/main.c @@ -385,7 +385,6 @@ static void load_image(char *arg, struct swaylock_state *state) { return; } wl_list_insert(&state->images, &image->link); - state->args.mode = BACKGROUND_MODE_FILL; wlr_log(WLR_DEBUG, "Loaded image %s for output %s", image->path, image->output_name ? image->output_name : "*"); } @@ -851,7 +850,7 @@ int main(int argc, char **argv) { enum line_mode line_mode = LM_LINE; state.args = (struct swaylock_args){ - .mode = BACKGROUND_MODE_SOLID_COLOR, + .mode = BACKGROUND_MODE_FILL, .font = strdup("sans-serif"), .radius = 50, .thickness = 10,