aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-08-15 03:00:14 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-08-20 11:34:34 +0900
commitff7d979d99ddb087a02fc457953b33e3beb4715b (patch)
tree142e0f92672c9c73b7770dea3a846fef0e8d4011 /sway/config.c
parentinput/keyboard: send released only if pressed sent (diff)
downloadsway-ff7d979d99ddb087a02fc457953b33e3beb4715b.tar.gz
sway-ff7d979d99ddb087a02fc457953b33e3beb4715b.tar.zst
sway-ff7d979d99ddb087a02fc457953b33e3beb4715b.zip
cmd_xwayland: add force for immediate launch
This just adds a force option to cmd_xwayland that allows for xwayland to be immediately launched instead of lazily launched. This is useful for slower machines so it can be part of the startup time instead of when the user is actively trying to use it
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 74080898..c1b0efa0 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -248,7 +248,7 @@ static void config_defaults(struct sway_config *config) {
248 config->font_height = 17; // height of monospace 10 248 config->font_height = 17; // height of monospace 10
249 config->urgent_timeout = 500; 249 config->urgent_timeout = 500;
250 config->popup_during_fullscreen = POPUP_SMART; 250 config->popup_during_fullscreen = POPUP_SMART;
251 config->xwayland = true; 251 config->xwayland = XWAYLAND_MODE_LAZY;
252 252
253 config->titlebar_border_thickness = 1; 253 config->titlebar_border_thickness = 1;
254 config->titlebar_h_padding = 5; 254 config->titlebar_h_padding = 5;