You are not logged in.

#1 2022-01-30 12:34:18

1uk
Member
Registered: 2013-06-09
Posts: 30

[Solved] Sway is only a grey screen with moving cursor.

Hello,
I recently installed sway and it looked very much like i3 with the bar at the bottom. And I could close it with shortcut mod + shift + e.
Now I destroyed it somehow and it is only a grey screen, however I see the cursor and can move it.
This is the error when I run it from TTY:

[wlr] [backend/drm/atomic.c:34] connector LVDS-1: Atomic commit failed (modeset): Permission denied
[wlr] [backend/drm/drm.c:1028] connector LVDS-1: Failed to disable CRTC 45

I also have a reddit post: https://www.reddit.com/r/swaywm/comment … &context=3

Hello. I recently installed wayland and sway and it worked. But then I did something I can't remember and now it doesn't work anymore. When I start sway it shows only a cursor. No shortcuts work or anything. There is the error message:

    [wlr] [types/wlr_drm_lease_v1.c:705] No DRM backend supplied, failed to create wlr_drm_lease_v1_manager
darkwood% sway -v
sway version 1.7
darkwood% paru -Qi wlroots
Name            : wlroots
Version         : 0.15.0-4

In the image you see on the left side sway (the grey box) and on the right alacritty.

weston & cage works fine. I also use the standard sway config from /etc/sway/config.

When I start sway from tty it is just grey but I can move the cursor. I can't quit sway. I have to go to tty2 and kill sway.

Please help.

These are my resources: https://wiki.archlinux.org/title/Sway https://github.com/swaywm/sway/wiki

Might also be of interest:

darkwood% sway alacritty
00:00:00.008 [sway/main.c:365] Unable to retrieve socket path

Last edited by 1uk (2022-01-30 16:23:59)

Offline

#2 2022-01-30 12:51:21

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 9,003
Website

Re: [Solved] Sway is only a grey screen with moving cursor.

Please share the content of ~/.config/sway/config and be sure to use code tags. Please also edit the OP to use code tags for the terminal output.

Does sway function normally if you remove ~/.config/sway/config?

1uk wrote:

when I run it from TTY

How exactly are you doing that? How exactly do you launch it normally? Please share the full, verbatim commands and/or configuration files.


Jin, Jîyan, Azadî

Offline

#3 2022-01-30 14:12:14

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,499
Website

Re: [Solved] Sway is only a grey screen with moving cursor.

Please also run sway redirecting all output to a log file and post or link to the full output.  I'd like to see the context of the two errors you quoted.


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#4 2022-01-30 15:47:15

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [Solved] Sway is only a grey screen with moving cursor.

darkwood% cat .config/sway/config
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.

### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod4
# Home row direction keys, like vim
set $left h
set $down j
set $up k
set $right l
# Your preferred terminal emulator
set $term foot
# Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.
set $menu dmenu_path | dmenu | xargs swaymsg exec --

### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
#
# Example configuration:
#
#   output HDMI-A-1 resolution 1920x1080 position 1920,0
#
# You can get the names of your outputs by running: swaymsg -t get_outputs

### Idle configuration
#
# Example configuration:
#
# exec swayidle -w \
#          timeout 300 'swaylock -f -c 000000' \
#          timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
#          before-sleep 'swaylock -f -c 000000'
#
# This will lock your screen after 300 seconds of inactivity, then turn off
# your displays after another 300 seconds, and turn your screens back on when
# resumed. It will also lock your screen before your computer goes to sleep.

### Input configuration
#
# Example configuration:
#
#   input "2:14:SynPS/2_Synaptics_TouchPad" {
#       dwt enabled
#       tap enabled
#       natural_scroll enabled
#       middle_emulation enabled
#   }
#
# You can get the names of your inputs by running: swaymsg -t get_inputs
# Read `man 5 sway-input` for more information about this section.

### Key bindings
#
# Basics:
#
    # Start a terminal
    bindsym $mod+Return exec $term

    # Kill focused window
    bindsym $mod+Shift+q kill

    # Start your launcher
    bindsym $mod+d exec $menu

    # Drag floating windows by holding down $mod and left mouse button.
    # Resize them with right mouse button + $mod.
    # Despite the name, also works for non-floating windows.
    # Change normal to inverse to use left mouse button for resizing and right
    # mouse button for dragging.
    floating_modifier $mod normal

    # Reload the configuration file
    bindsym $mod+Shift+c reload

    # Exit sway (logs you out of your Wayland session)
    bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
#
# Moving around:
#
    # Move your focus around
    bindsym $mod+$left focus left
    bindsym $mod+$down focus down
    bindsym $mod+$up focus up
    bindsym $mod+$right focus right
    # Or use $mod+[up|down|left|right]
    bindsym $mod+Left focus left
    bindsym $mod+Down focus down
    bindsym $mod+Up focus up
    bindsym $mod+Right focus right

    # Move the focused window with the same, but add Shift
    bindsym $mod+Shift+$left move left
    bindsym $mod+Shift+$down move down
    bindsym $mod+Shift+$up move up
    bindsym $mod+Shift+$right move right
    # Ditto, with arrow keys
    bindsym $mod+Shift+Left move left
    bindsym $mod+Shift+Down move down
    bindsym $mod+Shift+Up move up
    bindsym $mod+Shift+Right move right
#
# Workspaces:
#
    # Switch to workspace
    bindsym $mod+1 workspace number 1
    bindsym $mod+2 workspace number 2
    bindsym $mod+3 workspace number 3
    bindsym $mod+4 workspace number 4
    bindsym $mod+5 workspace number 5
    bindsym $mod+6 workspace number 6
    bindsym $mod+7 workspace number 7
    bindsym $mod+8 workspace number 8
    bindsym $mod+9 workspace number 9
    bindsym $mod+0 workspace number 10
    # Move focused container to workspace
    bindsym $mod+Shift+1 move container to workspace number 1
    bindsym $mod+Shift+2 move container to workspace number 2
    bindsym $mod+Shift+3 move container to workspace number 3
    bindsym $mod+Shift+4 move container to workspace number 4
    bindsym $mod+Shift+5 move container to workspace number 5
    bindsym $mod+Shift+6 move container to workspace number 6
    bindsym $mod+Shift+7 move container to workspace number 7
    bindsym $mod+Shift+8 move container to workspace number 8
    bindsym $mod+Shift+9 move container to workspace number 9
    bindsym $mod+Shift+0 move container to workspace number 10
    # Note: workspaces can have any name you want, not just numbers.
    # We just use 1-10 as the default.
#
# Layout stuff:
#
    # You can "split" the current object of your focus with
    # $mod+b or $mod+v, for horizontal and vertical splits
    # respectively.
    bindsym $mod+b splith
    bindsym $mod+v splitv

    # Switch the current container between different layout styles
    bindsym $mod+s layout stacking
    bindsym $mod+w layout tabbed
    bindsym $mod+e layout toggle split

    # Make the current focus fullscreen
    bindsym $mod+f fullscreen

    # Toggle the current focus between tiling and floating mode
    bindsym $mod+Shift+space floating toggle

    # Swap focus between the tiling area and the floating area
    bindsym $mod+space focus mode_toggle

    # Move focus to the parent container
    bindsym $mod+a focus parent
#
# Scratchpad:
#
    # Sway has a "scratchpad", which is a bag of holding for windows.
    # You can send windows there and get them back later.

    # Move the currently focused window to the scratchpad
    bindsym $mod+Shift+minus move scratchpad

    # Show the next scratchpad window or hide the focused scratchpad window.
    # If there are multiple scratchpad windows, this command cycles through them.
    bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
    # left will shrink the containers width
    # right will grow the containers width
    # up will shrink the containers height
    # down will grow the containers height
    bindsym $left resize shrink width 10px
    bindsym $down resize grow height 10px
    bindsym $up resize shrink height 10px
    bindsym $right resize grow width 10px

    # Ditto, with arrow keys
    bindsym Left resize shrink width 10px
    bindsym Down resize grow height 10px
    bindsym Up resize shrink height 10px
    bindsym Right resize grow width 10px

    # Return to default mode
    bindsym Return mode "default"
    bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"

#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
    position top

    # When the status_command prints a new line to stdout, swaybar updates.
    # The default just shows the current date and time.
    status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done

    colors {
        statusline #ffffff
        background #323232
        inactive_workspace #32323200 #32323200 #5c5c5c
    }
}

include /etc/sway/config.d/*

When I remove ~/.config/sway/config it also is just a grey box without working keyboard shortcuts / status bar.

I just login into a tty without any display manager like lightdm or sddm. Then I type in sway and hit enter. Because it's just grey and no keyboard shortcuts work, I have to switch to another tty and login and kill sway to then use startx for running my X window manager.

Edit:

darkwood% sway -c /etc/sway/config -dV > sway.log

This worked! It opens sway with the standard background image and keyboard shortcuts, dmenu are working.



darkwood% sway -c ~/.config/sway/config -dV 2>&1 | tee sway1.log

This works as well. Here is sway1.log:

00:00:00.000 [INFO] [sway/main.c:343] Sway version 1.7
00:00:00.000 [INFO] [sway/main.c:344] wlroots version 0.15.0
00:00:00.005 [INFO] [sway/main.c:120] Linux darkwood 5.16.1-arch1-1 #1 SMP PREEMPT Sun, 16 Jan 2022 11:39:23 +0000 x86_64 GNU/Linux
00:00:00.005 [INFO] [sway/main.c:136] Contents of /etc/os-release:
00:00:00.005 [INFO] [sway/main.c:120] NAME="Arch Linux"
00:00:00.005 [INFO] [sway/main.c:120] PRETTY_NAME="Arch Linux"
00:00:00.005 [INFO] [sway/main.c:120] ID=arch
00:00:00.005 [INFO] [sway/main.c:120] BUILD_ID=rolling
00:00:00.005 [INFO] [sway/main.c:120] ANSI_COLOR="38;2;23;147;209"
00:00:00.005 [INFO] [sway/main.c:120] HOME_URL="https://archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] DOCUMENTATION_URL="https://wiki.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] SUPPORT_URL="https://bbs.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] BUG_REPORT_URL="https://bugs.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] LOGO=archlinux-logo
00:00:00.005 [INFO] [sway/main.c:108] LD_LIBRARY_PATH=
00:00:00.005 [INFO] [sway/main.c:108] LD_PRELOAD=
00:00:00.005 [INFO] [sway/main.c:108] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/lukas/.dotnet/tools:/usr/lib/jvm/default/bin:/usr/share/mycroft-core/bin:/usr/share/mycroft-core:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
00:00:00.005 [INFO] [sway/main.c:108] SWAYSOCK=
00:00:00.005 [DEBUG] [sway/server.c:50] Preparing Wayland server initialization
00:00:00.005 [INFO] [wlr] [backend/x11/backend.c:397] Creating X11 backend
00:00:00.007 [INFO] [sway/main.c:394] Starting sway version 1.7
00:00:00.007 [DEBUG] [sway/server.c:75] Initializing Wayland server
00:00:00.009 [INFO] [wlr] [render/egl.c:180] Supported EGL client extensions: EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_EXT_platform_device EGL_EXT_platform_wayland EGL_KHR_platform_wayland EGL_EXT_platform_x11 EGL_KHR_platform_x11 EGL_MESA_platform_xcb EGL_MESA_platform_gbm EGL_KHR_platform_gbm EGL_MESA_platform_surfaceless
00:00:00.010 [DEBUG] [wlr] [render/egl.c:437] Using EGL device /dev/dri/card0
00:00:00.016 [INFO] [wlr] [render/egl.c:326] Using EGL 1.4
00:00:00.016 [INFO] [wlr] [render/egl.c:327] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display 
00:00:00.016 [INFO] [wlr] [render/egl.c:329] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node
00:00:00.016 [INFO] [wlr] [render/egl.c:331] EGL vendor: Mesa Project
00:00:00.016 [DEBUG] [wlr] [render/egl.c:158] Supported DMA-BUF formats: AB4H XB4H AR30 XR30 AB30 XB30 AR24 AB24 XR24 XB24 AR15 RG16 R8   R16  GR88 GR32 YUV9 YU11 YU12 YU16 YU24 YVU9 YV11 YV12 YV16 YV24 NV12 P010 P012 P016 NV16 AYUV XYUV YUYV UYVY 
00:00:00.016 [DEBUG] [wlr] [render/egl.c:159] EGL DMA-BUF format modifiers supported
00:00:00.017 [DEBUG] [wlr] [render/egl.c:485] Using EGL_PLATFORM_DEVICE_EXT
00:00:00.019 [INFO] [wlr] [render/gles2/renderer.c:731] Creating GLES2 renderer
00:00:00.019 [INFO] [wlr] [render/gles2/renderer.c:732] Using OpenGL ES 3.0 Mesa 21.3.4
00:00:00.019 [INFO] [wlr] [render/gles2/renderer.c:733] GL vendor: Intel Open Source Technology Center
00:00:00.019 [INFO] [wlr] [render/gles2/renderer.c:734] GL renderer: Mesa DRI Intel(R) HD Graphics 3000 (SNB GT2)
00:00:00.019 [INFO] [wlr] [render/gles2/renderer.c:735] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_NV_conditional_render GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_group_vote GL_EXT_shader_integer_mix GL_INTEL_performance_query GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_polygon_offset_clamp GL_EXT_texture_border_clamp GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_multisample_interpolation GL_OES_texture_border_clamp GL_EXT_blend_func_extended GL_EXT_float_blend GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_OES_EGL_image_external_essl3 GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_bgra 
00:00:00.026 [DEBUG] [wlr] [render/allocator/allocator.c:98] Trying to create gbm allocator
00:00:00.029 [DEBUG] [wlr] [render/allocator/gbm.c:203] Created GBM allocator with backend drm
00:00:00.029 [DEBUG] [wlr] [render/allocator/gbm.c:206] Using DRM node /dev/dri/renderD128
00:00:00.029 [DEBUG] [wlr] [types/wlr_idle.c:247] idle manager created
00:00:00.029 [ERROR] [wlr] [types/wlr_drm_lease_v1.c:705] No DRM backend supplied, failed to create wlr_drm_lease_v1_manager
00:00:00.029 [DEBUG] [sway/server.c:190] Failed to create wlr_drm_lease_device_v1
00:00:00.029 [INFO] [sway/server.c:191] VR will not be available
00:00:00.029 [INFO] [wlr] [backend/headless/backend.c:82] Creating headless backend
00:00:00.033 [INFO] [sway/config.c:407] Loading config from /home/lukas/.config/sway/config
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 1: # Default config for sway
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 2: #
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking.
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 4: #
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 5: # Read `man 5 sway` for a complete reference.
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 6: 
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 7: ### Variables
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 8: #
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 9: # Logo key. Use Mod1 for Alt.
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 10: set $mod Mod4
00:00:00.033 [INFO] [sway/commands.c:378] Config command: set $mod Mod4
00:00:00.033 [INFO] [sway/commands.c:398] After replacement: set $mod Mod4
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 11: # Home row direction keys, like vim
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 12: set $left h
00:00:00.033 [INFO] [sway/commands.c:378] Config command: set $left h
00:00:00.033 [INFO] [sway/commands.c:398] After replacement: set $left h
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 13: set $down j
00:00:00.033 [INFO] [sway/commands.c:378] Config command: set $down j
00:00:00.033 [INFO] [sway/commands.c:398] After replacement: set $down j
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 14: set $up k
00:00:00.033 [INFO] [sway/commands.c:378] Config command: set $up k
00:00:00.033 [INFO] [sway/commands.c:398] After replacement: set $up k
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 15: set $right l
00:00:00.033 [INFO] [sway/commands.c:378] Config command: set $right l
00:00:00.033 [INFO] [sway/commands.c:398] After replacement: set $right l
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 16: # Your preferred terminal emulator
00:00:00.033 [DEBUG] [sway/config.c:824] Read line 17: set $term foot
00:00:00.034 [INFO] [sway/commands.c:378] Config command: set $term foot
00:00:00.034 [INFO] [sway/commands.c:398] After replacement: set $term foot
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 18: # Your preferred application launcher
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 20: # on the original workspace that the command was run on.
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 21: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.034 [INFO] [sway/commands.c:378] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.034 [INFO] [sway/commands.c:398] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 22: 
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 23: ### Output configuration
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 24: #
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 25: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 26: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.034 [INFO] [sway/commands.c:378] Config command: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.034 [INFO] [sway/commands.c:398] After replacement: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.034 [DEBUG] [sway/commands.c:429] Subcommand: bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.034 [DEBUG] [sway/config/output.c:233] Adding output * config
00:00:00.034 [DEBUG] [sway/config/output.c:237] Config stored for output * (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill) (dpms 0) (max render time: -1)
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[0] = swaybg
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[1] = -o
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[2] = *
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[3] = -i
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[4] = /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[5] = -m
00:00:00.034 [DEBUG] [sway/config/output.c:880] spawn_swaybg cmd[6] = fill
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 27: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 28: # Example configuration:
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 29: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 30: #   output HDMI-A-1 resolution 1920x1080 position 1920,0
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 31: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 32: # You can get the names of your outputs by running: swaymsg -t get_outputs
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 33: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 34: ### Idle configuration
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 35: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 36: # Example configuration:
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 37: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 38: # exec swayidle -w \
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 39: #          timeout 300 'swaylock -f -c 000000' \
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 40: #          timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 41: #          before-sleep 'swaylock -f -c 000000'
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 42: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 43: # This will lock your screen after 300 seconds of inactivity, then turn off
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 44: # your displays after another 300 seconds, and turn your screens back on when
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 45: # resumed. It will also lock your screen before your computer goes to sleep.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 46: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 47: ### Input configuration
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 48: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 49: # Example configuration:
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 50: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 51: #   input "2:14:SynPS/2_Synaptics_TouchPad" {
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 52: #       dwt enabled
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 53: #       tap enabled
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 54: #       natural_scroll enabled
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 55: #       middle_emulation enabled
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 56: #   }
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 57: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 58: # You can get the names of your inputs by running: swaymsg -t get_inputs
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 59: # Read `man 5 sway-input` for more information about this section.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 60: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 61: ### Key bindings
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 62: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 63: # Basics:
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 64: #
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 65:     # Start a terminal
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 66:     bindsym $mod+Return exec $term
00:00:00.039 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Return exec $term
00:00:00.039 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Return exec foot
00:00:00.039 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Return to command `exec foot` for device '*'
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 67: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 68:     # Kill focused window
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 69:     bindsym $mod+Shift+q kill
00:00:00.039 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+q kill
00:00:00.039 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+q kill
00:00:00.039 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 70: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 71:     # Start your launcher
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 72:     bindsym $mod+d exec $menu
00:00:00.039 [INFO] [sway/commands.c:378] Config command: bindsym $mod+d exec $menu
00:00:00.039 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.039 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*'
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 73: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 74:     # Drag floating windows by holding down $mod and left mouse button.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 75:     # Resize them with right mouse button + $mod.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 76:     # Despite the name, also works for non-floating windows.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 77:     # Change normal to inverse to use left mouse button for resizing and right
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 78:     # mouse button for dragging.
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 79:     floating_modifier $mod normal
00:00:00.039 [INFO] [sway/commands.c:378] Config command: floating_modifier $mod normal
00:00:00.039 [INFO] [sway/commands.c:398] After replacement: floating_modifier Mod4 normal
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 80: 
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 81:     # Reload the configuration file
00:00:00.039 [DEBUG] [sway/config.c:824] Read line 82:     bindsym $mod+Shift+c reload
00:00:00.039 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+c reload
00:00:00.039 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+c reload
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 83: 
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 84:     # Exit sway (logs you out of your Wayland session)
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 85:     bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+e to command `exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 86: #
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 87: # Moving around:
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 88: #
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 89:     # Move your focus around
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 90:     bindsym $mod+$left focus left
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+$left focus left
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+h focus left
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+h to command `focus left` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 91:     bindsym $mod+$down focus down
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+$down focus down
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+j focus down
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+j to command `focus down` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 92:     bindsym $mod+$up focus up
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+$up focus up
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+k focus up
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+k to command `focus up` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 93:     bindsym $mod+$right focus right
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+$right focus right
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+l focus right
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+l to command `focus right` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 94:     # Or use $mod+[up|down|left|right]
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 95:     bindsym $mod+Left focus left
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Left focus left
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Left focus left
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Left to command `focus left` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 96:     bindsym $mod+Down focus down
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Down focus down
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Down focus down
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Down to command `focus down` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 97:     bindsym $mod+Up focus up
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Up focus up
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Up focus up
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Up to command `focus up` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 98:     bindsym $mod+Right focus right
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Right focus right
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Right focus right
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Right to command `focus right` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 99: 
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 100:     # Move the focused window with the same, but add Shift
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 101:     bindsym $mod+Shift+$left move left
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+$left move left
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+h move left
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 102:     bindsym $mod+Shift+$down move down
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+$down move down
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+j move down
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 103:     bindsym $mod+Shift+$up move up
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+$up move up
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+k move up
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 104:     bindsym $mod+Shift+$right move right
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+$right move right
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+l move right
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 105:     # Ditto, with arrow keys
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 106:     bindsym $mod+Shift+Left move left
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+Left move left
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+Left move left
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 107:     bindsym $mod+Shift+Down move down
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+Down move down
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+Down move down
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 108:     bindsym $mod+Shift+Up move up
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+Up move up
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+Up move up
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 109:     bindsym $mod+Shift+Right move right
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+Right move right
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+Right move right
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 110: #
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 111: # Workspaces:
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 112: #
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 113:     # Switch to workspace
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 114:     bindsym $mod+1 workspace number 1
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+1 workspace number 1
00:00:00.040 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+1 workspace number 1
00:00:00.040 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+1 to command `workspace number 1` for device '*'
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 115:     bindsym $mod+2 workspace number 2
00:00:00.040 [INFO] [sway/commands.c:378] Config command: bindsym $mod+2 workspace number 2
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+2 workspace number 2
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+2 to command `workspace number 2` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 116:     bindsym $mod+3 workspace number 3
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+3 workspace number 3
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+3 workspace number 3
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+3 to command `workspace number 3` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 117:     bindsym $mod+4 workspace number 4
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+4 workspace number 4
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+4 workspace number 4
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+4 to command `workspace number 4` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 118:     bindsym $mod+5 workspace number 5
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+5 workspace number 5
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+5 workspace number 5
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+5 to command `workspace number 5` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 119:     bindsym $mod+6 workspace number 6
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+6 workspace number 6
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+6 workspace number 6
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+6 to command `workspace number 6` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 120:     bindsym $mod+7 workspace number 7
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+7 workspace number 7
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+7 workspace number 7
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+7 to command `workspace number 7` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 121:     bindsym $mod+8 workspace number 8
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+8 workspace number 8
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+8 workspace number 8
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+8 to command `workspace number 8` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 122:     bindsym $mod+9 workspace number 9
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+9 workspace number 9
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+9 workspace number 9
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+9 to command `workspace number 9` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 123:     bindsym $mod+0 workspace number 10
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+0 workspace number 10
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+0 workspace number 10
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+0 to command `workspace number 10` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 124:     # Move focused container to workspace
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 125:     bindsym $mod+Shift+1 move container to workspace number 1
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+1 move container to workspace number 1
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+1 move container to workspace number 1
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+1 to command `move container to workspace number 1` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 126:     bindsym $mod+Shift+2 move container to workspace number 2
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+2 move container to workspace number 2
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+2 move container to workspace number 2
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+2 to command `move container to workspace number 2` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 127:     bindsym $mod+Shift+3 move container to workspace number 3
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+3 move container to workspace number 3
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+3 move container to workspace number 3
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+3 to command `move container to workspace number 3` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 128:     bindsym $mod+Shift+4 move container to workspace number 4
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+4 move container to workspace number 4
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+4 move container to workspace number 4
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+4 to command `move container to workspace number 4` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 129:     bindsym $mod+Shift+5 move container to workspace number 5
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+5 move container to workspace number 5
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+5 move container to workspace number 5
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+5 to command `move container to workspace number 5` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 130:     bindsym $mod+Shift+6 move container to workspace number 6
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+6 move container to workspace number 6
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+6 move container to workspace number 6
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+6 to command `move container to workspace number 6` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 131:     bindsym $mod+Shift+7 move container to workspace number 7
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+7 move container to workspace number 7
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+7 move container to workspace number 7
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+7 to command `move container to workspace number 7` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 132:     bindsym $mod+Shift+8 move container to workspace number 8
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+8 move container to workspace number 8
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+8 move container to workspace number 8
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+8 to command `move container to workspace number 8` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 133:     bindsym $mod+Shift+9 move container to workspace number 9
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+9 move container to workspace number 9
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+9 move container to workspace number 9
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+9 to command `move container to workspace number 9` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 134:     bindsym $mod+Shift+0 move container to workspace number 10
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+0 move container to workspace number 10
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+0 move container to workspace number 10
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+0 to command `move container to workspace number 10` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 135:     # Note: workspaces can have any name you want, not just numbers.
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 136:     # We just use 1-10 as the default.
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 137: #
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 138: # Layout stuff:
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 139: #
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 140:     # You can "split" the current object of your focus with
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 141:     # $mod+b or $mod+v, for horizontal and vertical splits
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 142:     # respectively.
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 143:     bindsym $mod+b splith
00:00:00.041 [INFO] [sway/commands.c:378] Config command: bindsym $mod+b splith
00:00:00.041 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+b splith
00:00:00.041 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+b to command `splith` for device '*'
00:00:00.041 [DEBUG] [sway/config.c:824] Read line 144:     bindsym $mod+v splitv
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+v splitv
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+v splitv
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+v to command `splitv` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 145: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 146:     # Switch the current container between different layout styles
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 147:     bindsym $mod+s layout stacking
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+s layout stacking
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+s layout stacking
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 148:     bindsym $mod+w layout tabbed
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+w layout tabbed
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+w layout tabbed
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 149:     bindsym $mod+e layout toggle split
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+e layout toggle split
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+e layout toggle split
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 150: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 151:     # Make the current focus fullscreen
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 152:     bindsym $mod+f fullscreen
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+f fullscreen
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+f fullscreen
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 153: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 154:     # Toggle the current focus between tiling and floating mode
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 155:     bindsym $mod+Shift+space floating toggle
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+space floating toggle
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+space floating toggle
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 156: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 157:     # Swap focus between the tiling area and the floating area
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 158:     bindsym $mod+space focus mode_toggle
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+space focus mode_toggle
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+space focus mode_toggle
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 159: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 160:     # Move focus to the parent container
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 161:     bindsym $mod+a focus parent
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+a focus parent
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+a focus parent
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+a to command `focus parent` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 162: #
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 163: # Scratchpad:
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 164: #
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 165:     # Sway has a "scratchpad", which is a bag of holding for windows.
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 166:     # You can send windows there and get them back later.
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 167: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 168:     # Move the currently focused window to the scratchpad
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 169:     bindsym $mod+Shift+minus move scratchpad
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+Shift+minus move scratchpad
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+Shift+minus move scratchpad
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 170: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 171:     # Show the next scratchpad window or hide the focused scratchpad window.
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 172:     # If there are multiple scratchpad windows, this command cycles through them.
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 173:     bindsym $mod+minus scratchpad show
00:00:00.042 [INFO] [sway/commands.c:378] Config command: bindsym $mod+minus scratchpad show
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+minus scratchpad show
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 174: #
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 175: # Resizing containers:
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 176: #
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 177: mode "resize" {
00:00:00.042 [DEBUG] [sway/config.c:878] Entering block 'mode "resize"'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 178:     # left will shrink the containers width
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 179:     # right will grow the containers width
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 180:     # up will shrink the containers height
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 181:     # down will grow the containers height
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 182:     bindsym $left resize shrink width 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym $left resize shrink width 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym h resize shrink width 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym h resize shrink width 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound h to command `resize shrink width 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 183:     bindsym $down resize grow height 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym $down resize grow height 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym j resize grow height 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym j resize grow height 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound j to command `resize grow height 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 184:     bindsym $up resize shrink height 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym $up resize shrink height 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym k resize shrink height 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym k resize shrink height 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound k to command `resize shrink height 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 185:     bindsym $right resize grow width 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym $right resize grow width 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym l resize grow width 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym l resize grow width 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound l to command `resize grow width 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 186: 
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 187:     # Ditto, with arrow keys
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 188:     bindsym Left resize shrink width 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Left resize shrink width 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Left resize shrink width 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Left resize shrink width 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 189:     bindsym Down resize grow height 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Down resize grow height 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Down resize grow height 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Down resize grow height 10px
00:00:00.042 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Down to command `resize grow height 10px` for device '*'
00:00:00.042 [DEBUG] [sway/config.c:824] Read line 190:     bindsym Up resize shrink height 10px
00:00:00.042 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Up resize shrink height 10px
00:00:00.042 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Up resize shrink height 10px
00:00:00.042 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Up resize shrink height 10px
00:00:00.043 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 191:     bindsym Right resize grow width 10px
00:00:00.043 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Right resize grow width 10px
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Right resize grow width 10px
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Right resize grow width 10px
00:00:00.043 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Right to command `resize grow width 10px` for device '*'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 192: 
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 193:     # Return to default mode
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 194:     bindsym Return mode "default"
00:00:00.043 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Return mode "default"
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Return mode "default"
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Return mode "default"
00:00:00.043 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Return to command `mode "default"` for device '*'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 195:     bindsym Escape mode "default"
00:00:00.043 [INFO] [sway/commands.c:378] Config command: mode "resize" bindsym Escape mode "default"
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: mode "resize" bindsym Escape mode "default"
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: bindsym Escape mode "default"
00:00:00.043 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Escape to command `mode "default"` for device '*'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 196: }
00:00:00.043 [DEBUG] [sway/config.c:895] Exiting block 'mode "resize"'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 197: bindsym $mod+r mode "resize"
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bindsym $mod+r mode "resize"
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bindsym Mod4+r mode "resize"
00:00:00.043 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 198: 
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 199: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 200: # Status Bar:
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 201: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 202: # Read `man 5 sway-bar` for more information about this section.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 203: bar {
00:00:00.043 [DEBUG] [sway/config.c:878] Entering block 'bar'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 204:     position top
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bar position top
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bar position top
00:00:00.043 [DEBUG] [sway/commands/bar.c:93] Creating bar: bar-0
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: position top
00:00:00.043 [DEBUG] [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 205: 
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 206:     # When the status_command prints a new line to stdout, swaybar updates.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 207:     # The default just shows the current date and time.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 208:     status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.043 [DEBUG] [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 209: 
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 210:     colors {
00:00:00.043 [DEBUG] [sway/config.c:878] Entering block 'bar colors'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 211:         statusline #ffffff
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bar colors statusline #ffffff
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bar colors statusline #ffffff
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: colors statusline #ffffff
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: statusline #ffffff
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 212:         background #323232
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bar colors background #323232
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bar colors background #323232
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: colors background #323232
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: background #323232
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 213:         inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.043 [INFO] [sway/commands.c:378] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.043 [DEBUG] [sway/commands.c:429] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 214:     }
00:00:00.043 [DEBUG] [sway/config.c:895] Exiting block 'bar colors'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 215: }
00:00:00.043 [DEBUG] [sway/config.c:895] Exiting block 'bar'
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 216: 
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 217: include /etc/sway/config.d/*
00:00:00.043 [INFO] [sway/commands.c:378] Config command: include /etc/sway/config.d/*
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: include /etc/sway/config.d/*
00:00:00.043 [INFO] [sway/config.c:407] Loading config from /etc/sway/config.d/10-systemd-cgroups.conf
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 1: # Automatically assign a dedicated systemd scope to the GUI applications
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 2: # launched in the same cgroup as the compositor. This could be helpful for
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 3: # implementing cgroup-based resource management and would be necessary when
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 4: # `systemd-oomd` is in use.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 5: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 6: # Limitations: The script is using i3ipc window:new event to detect application
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 7: # launches and would fail to detect background apps or special surfaces.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 8: # Therefore it's recommended to supplement the script with use of systemd user
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 9: # services for such background apps.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 10: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 11: exec /usr/lib/sway-systemd/assign-cgroups.py
00:00:00.043 [INFO] [sway/commands.c:378] Config command: exec /usr/lib/sway-systemd/assign-cgroups.py
00:00:00.043 [INFO] [sway/commands.c:398] After replacement: exec /usr/lib/sway-systemd/assign-cgroups.py
00:00:00.043 [DEBUG] [sway/config.c:868] Deferring command `exec /usr/lib/sway-systemd/assign-cgroups.py'
00:00:00.043 [INFO] [sway/config.c:407] Loading config from /etc/sway/config.d/10-systemd-session.conf
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 1: # Address several issues with DBus activation and systemd user sessions
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 2: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 3: # 1. DBus-activated and systemd services do not share the environment with user
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 4: #    login session. In order to make the applications that have GUI or interact
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 5: #    with the compositor work as a systemd user service, certain variables must
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 6: #    be propagated to the systemd and dbus.
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 7: #    Possible (but not exhaustive) list of variables:
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 8: #    - DISPLAY - for X11 applications that are started as user session services
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 9: #    - WAYLAND_DISPLAY - similarly, this is needed for wayland-native services
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 10: #    - I3SOCK/SWAYSOCK - allow services to talk with sway using i3 IPC protocol
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 11: #
00:00:00.043 [DEBUG] [sway/config.c:824] Read line 12: # 2. `xdg-desktop-portal` requires XDG_CURRENT_DESKTOP to be set in order to
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 13: #    select the right implementation for screenshot and screencast portals.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 14: #    With all the numerous ways to start sway, it's not possible to rely on the
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 15: #    right value of the XDG_CURRENT_DESKTOP variable within the login session,
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 16: #    therefore the script will ensure that it is always set to `sway`.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 17: #
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 18: # 3. GUI applications started as a systemd service (or via xdg-autostart-generator)
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 19: #    may rely on the XDG_SESSION_TYPE variable to select the backend.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 20: #    Ensure that it is always set to `wayland`.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 21: #
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 22: # 4. The common way to autostart a systemd service along with the desktop
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 23: #    environment is to add it to a `graphical-session.target`. However, systemd
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 24: #    forbids starting the graphical session target directly and encourages use
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 25: #    of an environment-specific target units. Therefore, the integration
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 26: #    package here provides and uses `sway-session.target` which would bind to
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 27: #    the `graphical-session.target`.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 28: #
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 29: # 5. Optionally, stop the target and unset the variables when the compositor
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 30: #    exits.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 31: #
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 32: exec /usr/lib/sway-systemd/session.sh --with-cleanup
00:00:00.044 [INFO] [sway/commands.c:378] Config command: exec /usr/lib/sway-systemd/session.sh --with-cleanup
00:00:00.044 [INFO] [sway/commands.c:398] After replacement: exec /usr/lib/sway-systemd/session.sh --with-cleanup
00:00:00.044 [DEBUG] [sway/config.c:868] Deferring command `exec /usr/lib/sway-systemd/session.sh --with-cleanup'
00:00:00.044 [INFO] [sway/config.c:407] Loading config from /etc/sway/config.d/50-systemd-user.conf
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 2: # See FS#63021
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 4: 
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 5: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [INFO] [sway/commands.c:378] Config command: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [INFO] [sway/commands.c:398] After replacement: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [DEBUG] [sway/config.c:868] Deferring command `exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP'
00:00:00.044 [DEBUG] [sway/config.c:824] Read line 7: exec hash dbus-update-activation-environment 2>/dev/null &&      dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [INFO] [sway/commands.c:378] Config command: exec hash dbus-update-activation-environment 2>/dev/null &&      dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [INFO] [sway/commands.c:398] After replacement: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.044 [DEBUG] [sway/config.c:868] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null &&      dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP'
00:00:00.061 [DEBUG] [sway/server.c:267] Initializing Xwayland (lazy=1)
00:00:00.061 [INFO] [sway/server.c:290] Starting backend on wayland display 'wayland-1'
00:00:00.061 [INFO] [wlr] [backend/x11/backend.c:166] Starting X11 backend
00:00:00.061 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_keyboard'
00:00:00.061 [DEBUG] [sway/input/input-manager.c:184] no fallback seat config - creating default
00:00:00.061 [DEBUG] [sway/config/seat.c:66] Adding non-wildcard seat config
00:00:00.061 [DEBUG] [sway/config/seat.c:83] Config stored for seat seat0
00:00:00.061 [DEBUG] [sway/input/input-manager.c:585] applying seat config for seat seat0
00:00:00.061 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_keyboard to seat seat0
00:00:00.067 [DEBUG] [sway/input/keyboard.c:937] Created keyboard group 0x555d1d883d00
00:00:00.067 [DEBUG] [sway/input/keyboard.c:960] Adding keyboard 0:0:X11_keyboard to group 0x555d1d883d00
00:00:00.079 [DEBUG] [sway/desktop/output.c:857] New output 0x555d1d88de10: X11-1 (non-desktop: 0)
00:00:00.079 [DEBUG] [sway/config/output.c:390] Turning on output X11-1
00:00:00.079 [DEBUG] [sway/config/output.c:450] Auto-detected output scale: 1.000000
00:00:00.079 [DEBUG] [sway/config/output.c:496] Committing output X11-1
00:00:00.079 [DEBUG] [sway/tree/workspace.c:281] Workspace: Generating new workspace name for output X11-1
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 1'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '1'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:272] Workspace: Found free name 1
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 2'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '2'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 3'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '3'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 4'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '4'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 5'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '5'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 6'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '6'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 7'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '7'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 8'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '8'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 9'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '9'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 10'
00:00:00.079 [DEBUG] [sway/tree/workspace.c:243] Isolated name from workspace number: '10'
00:00:00.079 [DEBUG] [sway/tree/output.c:127] Creating default workspace 1
00:00:00.079 [DEBUG] [sway/tree/workspace.c:63] Adding workspace 1 for output X11-1
00:00:00.112 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:00.135 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:00.135 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:00.135 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1024x768@0,0
00:00:00.135 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.135 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1024x768@0,0
00:00:00.135 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.144 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1da54030 committing with 2 instructions
00:00:00.144 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1da54030
00:00:00.144 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_pointer'
00:00:00.144 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_pointer to seat seat0
00:00:00.144 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_pointer
00:00:00.144 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_pointer to output X11-1
00:00:00.144 [DEBUG] [sway/input/seat.c:768] Mapped to output X11-1
00:00:00.144 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.144 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 24x24 GBM buffer (format 0x34325241, modifier 0x100000000000001)
00:00:00.144 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 24x24
00:00:00.145 [DEBUG] [wlr] [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 22 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.

00:00:00.145 [DEBUG] [wlr] [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 30 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.

00:00:00.146 [DEBUG] [wlr] [GLES2] VS vec4 shader: 7 inst, 0 loops, 24 cycles, 0:0 spills:fills, 1 sends, compacted 112 to 112 bytes.

00:00:00.146 [DEBUG] [wlr] [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 16 cycles, 0:0 spills:fills, 1 sends, scheduled with mode (null), Promoted 0 constants, compacted 32 to 32 bytes.

00:00:00.146 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_touch'
00:00:00.146 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_touch to seat seat0
00:00:00.146 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_touch
00:00:00.146 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_touch to output X11-1
00:00:00.146 [DEBUG] [sway/input/seat.c:768] Mapped to output X11-1
00:00:00.146 [INFO] [wlr] [backend/headless/backend.c:18] Starting headless backend
00:00:00.146 [DEBUG] [sway/config/bar.c:266] Invoking swaybar for bar id 'bar-0'
00:00:00.148 [DEBUG] [sway/config/bar.c:258] Spawned swaybar bar-0
00:00:00.148 [DEBUG] [sway/config.c:673] Running deferred commands
00:00:00.148 [INFO] [sway/commands.c:258] Handling command 'exec /usr/lib/sway-systemd/assign-cgroups.py'
00:00:00.148 [DEBUG] [sway/commands/exec_always.c:46] Executing /usr/lib/sway-systemd/assign-cgroups.py
00:00:00.153 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11343
00:00:00.153 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11343
00:00:00.153 [INFO] [sway/commands.c:258] Handling command 'exec /usr/lib/sway-systemd/session.sh --with-cleanup'
00:00:00.153 [DEBUG] [sway/commands/exec_always.c:46] Executing /usr/lib/sway-systemd/session.sh --with-cleanup
00:00:00.158 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11345
00:00:00.158 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11345
00:00:00.158 [INFO] [sway/commands.c:258] Handling command 'exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP'
00:00:00.158 [DEBUG] [sway/commands/exec_always.c:46] Executing systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.162 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11347
00:00:00.162 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11347
00:00:00.162 [INFO] [sway/commands.c:258] Handling command 'exec hash dbus-update-activation-environment 2>/dev/null &&      dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP'
00:00:00.162 [DEBUG] [sway/commands/exec_always.c:46] Executing hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
00:00:00.166 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11349
00:00:00.166 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11349
00:00:00.166 [INFO] [sway/server.c:302] Running compositor on wayland display 'wayland-1'
00:00:00.166 [DEBUG] [wlr] [types/output/render.c:73] Choosing primary buffer format 0x34325258 for output 'X11-1'
00:00:00.166 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.170 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 1024x768 GBM buffer (format 0x34325258, modifier 0xFFFFFFFFFFFFFF)
00:00:00.170 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 1024x768
00:00:00.171 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.171 [DEBUG] [sway/ipc-server.c:199] New client: fd 32
00:00:00.171 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:00.171 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.172 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.172 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.172 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.172 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1d7e9330 committing with 1 instructions
00:00:00.172 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1d7e9330
00:00:00.172 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.172 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.172 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1d7e9330 committing with 1 instructions
00:00:00.172 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1d7e9330
00:00:00.173 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.173 [DEBUG] [sway/ipc-server.c:199] New client: fd 34
00:00:00.173 [DEBUG] [sway/ipc-server.c:219] Client 32 readable
00:00:00.173 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x6 to client 32 queue: { "id": "bar-0", "mode": "dock", "hidden_state": "hide", "position": "top", "status_command": "while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done", "font": "monospace 10", "gaps": { "top": 0, "right": 0, "bottom": 0, "left": 0 }, "bar_height": 0, "status_padding": 1, "status_edge_padding": 3, "wrap_scroll": false, "workspace_buttons": true, "strip_workspace_numbers": false, "strip_workspace_name": false, "workspace_min_width": 0, "binding_mode_indicator": true, "verbose": false, "pango_markup": false, "colors": { "background": "#323232ff", "statusline": "#ffffffff", "separator": "#666666ff", "focused_background": "#323232ff", "focused_statusline": "#ffffffff", "focused_separator": "#666666ff", "focused_workspace_border": "#4c7899ff", "focused_workspace_bg": "#285577ff", "focused_workspace_text": "#ffffffff", "inactive_workspace_border": "#32323200", "inactive_workspace_bg": "#32323200", "inactive_workspace_text": "#5c5c5cff", "active_workspace_border": "#333333ff", "active_workspace_bg": "#5f676aff", "active_workspace_text": "#ffffffff", "urgent_workspace_border": "#2f343aff", "urgent_workspace_bg": "#900000ff", "urgent_workspace_text": "#ffffffff", "binding_mode_border": "#2f343aff", "binding_mode_bg": "#900000ff", "binding_mode_text": "#ffffffff" }, "tray_padding": 2 }
2022-01-30 17:14:26 - [swaybg/main.c:340] Found config * for output X11-1 ((null))
00:00:00.173 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db30380 (res 0x555d1da49250)
00:00:00.174 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:472] new layer_surface 0x555d1da48930 (res 0x555d1d8a5460)
00:00:00.174 [DEBUG] [sway/desktop/layer_shell.c:618] new layer surface: namespace wallpaper layer 0 anchor 15 size 0x0 margin 0,0,0,0,
00:00:00.174 [DEBUG] [sway/ipc-server.c:535] Client 32 writable
Environment variable $XDG_CURRENT_DESKTOP not set, ignoring.
00:00:00.179 [DEBUG] [sway/ipc-server.c:219] Client 34 readable
00:00:00.179 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x2 to client 34 queue: {"success": true}
00:00:00.179 [DEBUG] [sway/ipc-server.c:535] Client 34 writable
00:00:00.187 [DEBUG] [wlr] [types/output/render.c:73] Choosing primary buffer format 0x34325258 for output 'X11-1'
00:00:00.187 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.189 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 878x879 GBM buffer (format 0x34325258, modifier 0xFFFFFFFFFFFFFF)
00:00:00.189 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 878x879
00:00:00.220 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.221 [DEBUG] [sway/ipc-server.c:199] New client: fd 36
00:00:00.221 [DEBUG] [sway/ipc-server.c:219] Client 36 readable
00:00:00.221 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x2 to client 36 queue: {"success": true}
00:00:00.221 [DEBUG] [sway/ipc-server.c:535] Client 36 writable
00:00:00.226 [DEBUG] [sway/ipc-server.c:219] Client 32 readable
00:00:00.226 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x1 to client 32 queue: [ { "id": 4, "type": "workspace", "orientation": "horizontal", "percent": null, "urgent": false, "marks": [ ], "layout": "splith", "border": "none", "current_border_width": 0, "rect": { "x": 0, "y": 0, "width": 878, "height": 879 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 0, "height": 0 }, "name": "1", "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 1, "sticky": false, "num": 1, "output": "X11-1", "representation": null, "focused": true, "visible": true } ]
00:00:00.226 [DEBUG] [sway/ipc-server.c:535] Client 32 writable
00:00:00.228 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db1ddf0 (res 0x555d1d88ba50)
00:00:00.228 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:472] new layer_surface 0x555d1db1e130 (res 0x555d1d88f020)
00:00:00.228 [DEBUG] [sway/desktop/layer_shell.c:618] new layer surface: namespace panel layer 1 anchor 13 size 0x23 margin 0,0,0,0,
00:00:00.228 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:00.228 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x856@0,23
00:00:00.228 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 23.000000
00:00:00.228 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1da53930 committing with 1 instructions
00:00:00.228 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1da53930
00:00:00.228 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db2f3f0 (res 0x555d1db2f730)
00:00:00.378 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.378 [DEBUG] [sway/ipc-server.c:199] New client: fd 39
00:00:00.378 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.378 [DEBUG] [sway/ipc-server.c:199] New client: fd 41
00:00:00.386 [INFO] [wlr] [xwayland/server.c:92] Starting Xwayland on :1
00:00:00.446 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db28b90 (res 0x555d1db28ed0)
00:00:00.447 [DEBUG] [wlr] [xwayland/server.c:250] Xserver is ready
00:00:00.448 [DEBUG] [wlr] [xwayland/xwm.c:1853] xfixes version: 5.0
00:00:00.448 [DEBUG] [wlr] [xwayland/xwm.c:1873] xres version: 1.2
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.452 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.453 [DEBUG] [sway/input/cursor.c:918] denying request to set cursor from unfocused client
00:00:00.453 [DEBUG] [wlr] [types/wlr_relative_pointer_v1.c:145] relative_pointer_v1 0x555d1db29980 created for client 0x555d1da48530
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Unsupported maximum keycode 708, clipping.
>                   X11 cannot support keycodes above 255.
Errors from xkbcomp are not fatal to the X server
00:00:00.464 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.464 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
00:00:00.464 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:00.464 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
INFO:assign-cgroups:X-Resource version 1.2
00:00:00.486 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:00.486 [DEBUG] [sway/ipc-server.c:199] New client: fd 47
00:00:00.486 [DEBUG] [sway/ipc-server.c:214] Client 47 hung up
00:00:00.486 [INFO] [sway/ipc-server.c:565] IPC Client 47 disconnected
INFO:assign-cgroups:compositor:11328 /user.slice/user-1000.slice/session-1.scope
00:00:00.487 [DEBUG] [sway/ipc-server.c:219] Client 41 readable
00:00:00.487 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x2 to client 41 queue: {"success": true}
00:00:00.487 [DEBUG] [sway/ipc-server.c:535] Client 41 writable
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Unsupported maximum keycode 708, clipping.
>                   X11 cannot support keycodes above 255.
Errors from xkbcomp are not fatal to the X server
00:00:05.538 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:05.538 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
00:00:05.538 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:05.538 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
00:00:07.331 [DEBUG] [sway/commands/bind.c:617] running command for binding: exec dmenu_path | dmenu | xargs swaymsg exec --
00:00:07.331 [INFO] [sway/commands.c:258] Handling command 'exec dmenu_path | dmenu | xargs swaymsg exec --'
00:00:07.332 [DEBUG] [sway/commands/exec_always.c:46] Executing dmenu_path | dmenu | xargs swaymsg exec --
00:00:07.337 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11420
00:00:07.337 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11420
00:00:07.376 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:07.376 [DEBUG] [sway/desktop/xwayland.c:764] New xwayland unmanaged surface
00:00:07.376 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:07.377 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db29ea0 (res 0x555d1db2a780)
00:00:07.377 [DEBUG] [wlr] [xwayland/xwm.c:1674] New xwayland surface: 0x555d1db29ea0
00:00:07.377 [DEBUG] [wlr] [xwayland/selection/selection.c:147] not handling selection events: no seat assigned to xwayland
00:00:07.384 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
00:00:07.384 [DEBUG] [wlr] [xwayland/xwm.c:1583] unhandled X11 event: MappingNotify (34)
00:00:09.229 [ERROR] [wlr] [xwayland/xwm.c:1556] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 150, value 6291460
00:00:09.230 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:09.230 [DEBUG] [sway/ipc-server.c:199] New client: fd 47
00:00:09.230 [DEBUG] [sway/ipc-server.c:219] Client 47 readable
00:00:09.230 [INFO] [sway/commands.c:258] Handling command 'exec alacritty'
00:00:09.231 [DEBUG] [sway/commands/exec_always.c:46] Executing alacritty
00:00:09.234 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11438
00:00:09.234 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11438
00:00:09.234 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1d2606f0 committing with 2 instructions
00:00:09.234 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1d2606f0
00:00:09.234 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x0 to client 47 queue: [ { "success": true } ]
00:00:09.234 [DEBUG] [sway/ipc-server.c:535] Client 47 writable
00:00:09.234 [
  {
    "success": true
  }
]
[DEBUG] [sway/ipc-server.c:214] Client 47 hung up
00:00:09.235 [INFO] [sway/ipc-server.c:565] IPC Client 47 disconnected
00:00:09.267 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1da50510 (res 0x555d1da4fe70)
00:00:09.267 [DEBUG] [wlr] [types/wlr_relative_pointer_v1.c:145] relative_pointer_v1 0x555d1da508e0 created for client 0x555d1da497e0
00:00:09.267 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1da50f30 (res 0x555d1da51270)
00:00:09.267 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:414] new xdg_surface 0x555d1da514b0 (res 0x555d1da51600)
00:00:09.267 [DEBUG] [sway/desktop/xdg_shell.c:514] New xdg_shell toplevel title='(null)' app_id='(null)'
00:00:09.267 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db2ab30 (res 0x555d1da51880)
00:00:09.267 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:208] new xdg_toplevel_decoration 0x555d1db2af00 (res 0x555d1db2afe0)
00:00:09.312 [DEBUG] [sway/tree/root.c:249] Looking up workspace for pid 11438
00:00:09.312 [DEBUG] [sway/tree/root.c:256] found pid_workspace for pid 11438, workspace 1
00:00:09.312 [DEBUG] [sway/ipc-server.c:332] Sending window::new event
00:00:09.312 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000003 to client 41 queue: { "change": "new", "container": { "id": 5, "type": "con", "orientation": "none", "percent": 0.0, "urgent": false, "marks": [ ], "focused": false, "layout": "none", "border": "none", "current_border_width": 0, "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 800, "height": 600 }, "name": null, "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 0, "sticky": false, "pid": 11438, "app_id": "Alacritty", "visible": true, "max_render_time": 0, "shell": "xdg_shell", "inhibit_idle": false, "idle_inhibitors": { "user": "none", "application": "none" } } }
00:00:09.312 [DEBUG] [sway/ipc-server.c:332] Sending window::title event
00:00:09.313 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000003 to client 41 queue: { "change": "title", "container": { "id": 5, "type": "con", "orientation": "none", "percent": 0.0, "urgent": false, "marks": [ ], "focused": false, "layout": "none", "border": "none", "current_border_width": 0, "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 800, "height": 600 }, "name": "Alacritty", "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 0, "sticky": false, "pid": 11438, "app_id": "Alacritty", "visible": true, "max_render_time": 0, "shell": "xdg_shell", "inhibit_idle": false, "idle_inhibitors": { "user": "none", "application": "none" } } }
00:00:09.313 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x856@0,23
00:00:09.313 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 23.000000
00:00:09.313 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffef706b080 horizontally
00:00:09.313 [DEBUG] [sway/ipc-server.c:332] Sending window::focus event
00:00:09.313 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000003 to client 41 queue: { "change": "focus", "container": { "id": 5, "type": "con", "orientation": "none", "percent": 1.0, "urgent": false, "marks": [ ], "focused": true, "layout": "none", "border": "none", "current_border_width": 0, "rect": { "x": 0, "y": 23, "width": 878, "height": 856 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window_rect": { "x": 2, "y": 0, "width": 874, "height": 829 }, "geometry": { "x": 0, "y": 0, "width": 800, "height": 600 }, "name": "Alacritty", "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 0, "sticky": false, "pid": 11438, "app_id": "Alacritty", "visible": true, "max_render_time": 0, "shell": "xdg_shell", "inhibit_idle": false, "idle_inhibitors": { "user": "none", "application": "none" } } }
00:00:09.313 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db2d4f0 committing with 3 instructions
00:00:09.313 [DEBUG] [sway/ipc-server.c:535] Client 41 writable
00:00:09.326 [DEBUG] [sway/desktop/transaction.c:494] Transaction 0x555d1db2d4f0 is ready
00:00:09.326 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db2d4f0
00:00:09.326 [DEBUG] [sway/tree/container.c:1354] Container 0x555d1db2c8e0 entered output 0x555d1d88ced0
00:00:09.333 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:09.333 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 24x24 GBM buffer (format 0x34325241, modifier 0x100000000000001)
00:00:09.333 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 24x24
00:00:11.608 [DEBUG] [sway/ipc-server.c:332] Sending window::close event
00:00:11.608 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000003 to client 41 queue: { "change": "close", "container": { "id": 5, "type": "con", "orientation": "none", "percent": 1.0, "urgent": false, "marks": [ ], "focused": true, "layout": "none", "border": "normal", "current_border_width": 2, "rect": { "x": 0, "y": 48, "width": 878, "height": 831 }, "deco_rect": { "x": 0, "y": 0, "width": 878, "height": 25 }, "window_rect": { "x": 2, "y": 0, "width": 874, "height": 829 }, "geometry": { "x": 0, "y": 0, "width": 800, "height": 600 }, "name": "Alacritty", "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 0, "sticky": false, "pid": 11438, "app_id": "Alacritty", "visible": true, "max_render_time": 0, "shell": "xdg_shell", "inhibit_idle": false, "idle_inhibitors": { "user": "none", "application": "none" } } }
00:00:11.608 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x856@0,23
00:00:11.608 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 23.000000
00:00:11.608 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db2b1d0 committing with 2 instructions
00:00:11.608 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db2b1d0
00:00:11.609 [DEBUG] [sway/ipc-server.c:535] Client 41 writable
00:00:14.814 [DEBUG] [sway/commands/bind.c:617] running command for binding: exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
00:00:14.815 [INFO] [sway/commands.c:258] Handling command 'exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit''
00:00:14.815 [DEBUG] [sway/commands/exec_always.c:46] Executing swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
00:00:14.819 [DEBUG] [sway/commands/exec_always.c:92] Child process created with pid 11481
00:00:14.819 [DEBUG] [sway/tree/root.c:299] Recording workspace for process 11481
00:00:14.851 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db47470 (res 0x555d1db2ae70)
00:00:14.851 [DEBUG] [wlr] [types/wlr_surface.c:741] New wlr_surface 0x555d1db2c570 (res 0x555d1da51600)
00:00:14.851 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:472] new layer_surface 0x555d1db477e0 (res 0x555d1db447f0)
00:00:14.851 [DEBUG] [sway/desktop/layer_shell.c:618] new layer surface: namespace swaynag layer 2 anchor 13 size 0x35 margin 0,0,0,0,
00:00:14.851 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:14.851 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x821@0,58
00:00:14.851 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 58.000000
00:00:14.852 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db43a70 committing with 1 instructions
00:00:14.852 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db43a70
00:00:14.855 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:14.855 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x823@0,56
00:00:14.855 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 56.000000
00:00:14.856 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db17ad0 committing with 1 instructions
00:00:14.856 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db17ad0
00:00:14.859 [DEBUG] [wlr] [GLES2] FS SIMD8 shader: 17 inst, 0 loops, 849 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 272 to 240 bytes.

00:00:14.859 [DEBUG] [wlr] [GLES2] FS SIMD16 shader: 20 inst, 0 loops, 867 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 320 to 288 bytes.

00:00:16.746 [DEBUG] [sway/ipc-server.c:153] Event on IPC listening socket
00:00:16.746 [DEBUG] [sway/ipc-server.c:199] New client: fd 53
00:00:16.746 [DEBUG] [sway/ipc-server.c:219] Client 53 readable
00:00:16.746 [INFO] [sway/commands.c:258] Handling command 'exit'
00:00:16.746 [DEBUG] [sway/ipc-server.c:390] Sending shutdown::exit event
00:00:16.746 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000006 to client 36 queue: { "change": "exit" }
00:00:16.746 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x0 to client 53 queue: [ { "success": true } ]
00:00:16.746 [INFO] [sway/main.c:434] Shutting down sway
00:00:16.746 (EE) [DEBUG] failed to read Wayland events: Broken pipe
[sway/desktop/layer_shell.c:360] Layer surface destroyed (wallpaper)
00:00:16.746 [DEBUG] [sway/desktop/layer_shell.c:360] Layer surface destroyed (panel)
00:00:16.747 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:16.747 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x846@0,33
00:00:16.747 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 33.000000
00:00:16.747 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1d88c430 committing with 1 instructions
00:00:16.747 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1d88c430
00:00:16.747 [DEBUG] [sway/desktop/layer_shell.c:360] Layer surface destroyed (swaynag)
00:00:16.748 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:16.748 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:16.748 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:16.748 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1da429a0 committing with 1 instructions
00:00:16.748 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1da429a0
00:00:16.749 [DEBUG] [sway/tree/output.c:264] Disabling output 'X11-1'
00:00:16.749 [DEBUG] [sway/tree/workspace.c:143] Destroying workspace '1'
00:00:16.750 [DEBUG] [sway/ipc-server.c:306] Sending workspace::empty event
00:00:16.750 [DEBUG] [sway/ipc-server.c:958] Added IPC reply of type 0x80000000 to client 34 queue: { "change": "empty", "old": null, "current": { "id": 4, "type": "workspace", "orientation": "horizontal", "percent": null, "urgent": false, "marks": [ ], "focused": true, "layout": "splith", "border": "none", "current_border_width": 0, "rect": { "x": 0, "y": 0, "width": 878, "height": 879 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 0, "height": 0 }, "name": "1", "window": null, "nodes": [ ], "floating_nodes": [ ], "focus": [ ], "fullscreen_mode": 1, "sticky": false, "num": 1, "output": null, "representation": "H[]" } }
00:00:16.750 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_touch
00:00:16.750 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_touch to output X11-1
00:00:16.750 [DEBUG] [sway/input/seat.c:760] Requested output X11-1 for device 0:0:X11_touch isn't present
00:00:16.750 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_pointer
00:00:16.750 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_pointer to output X11-1
00:00:16.750 [DEBUG] [sway/input/seat.c:760] Requested output X11-1 for device 0:0:X11_pointer isn't present
00:00:16.761 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db3a320 committing with 2 instructions
00:00:16.761 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db3a320
00:00:16.761 [DEBUG] [sway/tree/output.c:288] Destroying output 'X11-1'
00:00:16.761 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x555d1db3a320 committing with 1 instructions
00:00:16.761 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x555d1db3a320
00:00:16.761 [DEBUG] [sway/input/input-manager.c:202] removing device: '0:0:X11_pointer'
00:00:16.761 [DEBUG] [sway/input/seat.c:959] removing device 0:0:X11_pointer from seat seat0
00:00:16.761 [DEBUG] [sway/input/input-manager.c:202] removing device: '0:0:X11_touch'
00:00:16.761 [DEBUG] [sway/input/seat.c:959] removing device 0:0:X11_touch from seat seat0
00:00:16.761 [DEBUG] [sway/input/input-manager.c:202] removing device: '0:0:X11_keyboard'
00:00:16.761 [DEBUG] [sway/input/seat.c:959] removing device 0:0:X11_keyboard from seat seat0
00:00:16.761 [DEBUG] [sway/input/keyboard.c:825] Removing keyboard 0:0:X11_keyboard from group 0x555d1d883d00
00:00:16.761 [DEBUG] [sway/input/keyboard.c:831] Destroying empty keyboard group 0x555d1d883d00
00:00:16.762 [INFO] [sway/ipc-server.c:565] IPC Client 53 disconnected
00:00:16.762 [INFO] [sway/ipc-server.c:565] IPC Client 41 disconnected
00:00:00.015 [ERROR] [common/ipc-client.c:87] Unable to receive IPC response00:00:16.762 
[INFO] [sway/ipc-server.c:565] IPC Client 39 disconnected
00:00:16.762 [INFO] [sway/ipc-server.c:565] IPC Client 36 disconnected
00:00:16.762 [INFO] [sway/ipc-server.c:565] IPC Client 34 disconnected
00:00:16.541 [ERROR] [common/ipc-client.c:87] Unable to receive IPC response
00:00:16.762 [INFO] [sway/ipc-server.c:565] IPC Client 32 disconnected
ERROR:root:Connection to the Sway IPC was lost
Traceback (most recent call last):
  File "/usr/lib/sway-systemd/assign-cgroups.py", line 255, in main
    await conn.main()
  File "/usr/lib/python3.10/site-packages/i3ipc/aio/connection.py", line 664, in main
    await self._main_future
  File "/usr/lib/python3.10/site-packages/i3ipc/aio/connection.py", line 284, in _message_reader
    self._read_message()
  File "/usr/lib/python3.10/site-packages/i3ipc/aio/connection.py", line 306, in _read_message
    raise EOFError()
EOFError

So lets see the output of just sway:

sway -dV 2>&1 | tee sway2.log

sway2.log:

00:00:00.000 [INFO] [sway/main.c:343] Sway version 1.7
00:00:00.000 [INFO] [sway/main.c:344] wlroots version 0.15.0
00:00:00.005 [INFO] [sway/main.c:120] Linux darkwood 5.16.1-arch1-1 #1 SMP PREEMPT Sun, 16 Jan 2022 11:39:23 +0000 x86_64 GNU/Linux
00:00:00.005 [INFO] [sway/main.c:136] Contents of /etc/os-release:
00:00:00.005 [INFO] [sway/main.c:120] NAME="Arch Linux"
00:00:00.005 [INFO] [sway/main.c:120] PRETTY_NAME="Arch Linux"
00:00:00.005 [INFO] [sway/main.c:120] ID=arch
00:00:00.005 [INFO] [sway/main.c:120] BUILD_ID=rolling
00:00:00.005 [INFO] [sway/main.c:120] ANSI_COLOR="38;2;23;147;209"
00:00:00.005 [INFO] [sway/main.c:120] HOME_URL="https://archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] DOCUMENTATION_URL="https://wiki.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] SUPPORT_URL="https://bbs.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] BUG_REPORT_URL="https://bugs.archlinux.org/"
00:00:00.005 [INFO] [sway/main.c:120] LOGO=archlinux-logo
00:00:00.005 [INFO] [sway/main.c:108] LD_LIBRARY_PATH=
00:00:00.005 [INFO] [sway/main.c:108] LD_PRELOAD=
00:00:00.005 [INFO] [sway/main.c:108] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/lukas/.dotnet/tools:/usr/lib/jvm/default/bin:/usr/share/mycroft-core/bin:/usr/share/mycroft-core:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
00:00:00.005 [INFO] [sway/main.c:108] SWAYSOCK=
00:00:00.005 [DEBUG] [sway/server.c:50] Preparing Wayland server initialization
00:00:00.005 [INFO] [wlr] [backend/x11/backend.c:397] Creating X11 backend
00:00:00.006 [INFO] [sway/main.c:394] Starting sway version 1.7
00:00:00.007 [DEBUG] [sway/server.c:75] Initializing Wayland server
00:00:00.008 [INFO] [wlr] [render/egl.c:180] Supported EGL client extensions: EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_EXT_platform_device EGL_EXT_platform_wayland EGL_KHR_platform_wayland EGL_EXT_platform_x11 EGL_KHR_platform_x11 EGL_MESA_platform_xcb EGL_MESA_platform_gbm EGL_KHR_platform_gbm EGL_MESA_platform_surfaceless
00:00:00.009 [DEBUG] [wlr] [render/egl.c:437] Using EGL device /dev/dri/card0
00:00:00.017 [INFO] [wlr] [render/egl.c:326] Using EGL 1.4
00:00:00.017 [INFO] [wlr] [render/egl.c:327] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display 
00:00:00.017 [INFO] [wlr] [render/egl.c:329] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node
00:00:00.017 [INFO] [wlr] [render/egl.c:331] EGL vendor: Mesa Project
00:00:00.017 [DEBUG] [wlr] [render/egl.c:158] Supported DMA-BUF formats: AB4H XB4H AR30 XR30 AB30 XB30 AR24 AB24 XR24 XB24 AR15 RG16 R8   R16  GR88 GR32 YUV9 YU11 YU12 YU16 YU24 YVU9 YV11 YV12 YV16 YV24 NV12 P010 P012 P016 NV16 AYUV XYUV YUYV UYVY 
00:00:00.017 [DEBUG] [wlr] [render/egl.c:159] EGL DMA-BUF format modifiers supported
00:00:00.018 [DEBUG] [wlr] [render/egl.c:485] Using EGL_PLATFORM_DEVICE_EXT
00:00:00.020 [INFO] [wlr] [render/gles2/renderer.c:731] Creating GLES2 renderer
00:00:00.020 [INFO] [wlr] [render/gles2/renderer.c:732] Using OpenGL ES 3.0 Mesa 21.3.4
00:00:00.020 [INFO] [wlr] [render/gles2/renderer.c:733] GL vendor: Intel Open Source Technology Center
00:00:00.020 [INFO] [wlr] [render/gles2/renderer.c:734] GL renderer: Mesa DRI Intel(R) HD Graphics 3000 (SNB GT2)
00:00:00.020 [INFO] [wlr] [render/gles2/renderer.c:735] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_NV_conditional_render GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_group_vote GL_EXT_shader_integer_mix GL_INTEL_performance_query GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_polygon_offset_clamp GL_EXT_texture_border_clamp GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_multisample_interpolation GL_OES_texture_border_clamp GL_EXT_blend_func_extended GL_EXT_float_blend GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_OES_EGL_image_external_essl3 GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_bgra 
00:00:00.027 [DEBUG] [wlr] [render/allocator/allocator.c:98] Trying to create gbm allocator
00:00:00.030 [DEBUG] [wlr] [render/allocator/gbm.c:203] Created GBM allocator with backend drm
00:00:00.031 [DEBUG] [wlr] [render/allocator/gbm.c:206] Using DRM node /dev/dri/renderD128
00:00:00.031 [DEBUG] [wlr] [types/wlr_idle.c:247] idle manager created
00:00:00.031 [ERROR] [wlr] [types/wlr_drm_lease_v1.c:705] No DRM backend supplied, failed to create wlr_drm_lease_v1_manager
00:00:00.031 [DEBUG] [sway/server.c:190] Failed to create wlr_drm_lease_device_v1
00:00:00.031 [INFO] [sway/server.c:191] VR will not be available
00:00:00.031 [INFO] [wlr] [backend/headless/backend.c:82] Creating headless backend
00:00:00.034 [INFO] [sway/config.c:407] Loading config from /home/lukas/.sway/config
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 1: input * {
00:00:00.034 [DEBUG] [sway/config.c:878] Entering block 'input *'
00:00:00.034 [DEBUG] [sway/config.c:824] Read line 2: 	xkb_variant "colemak"
00:00:00.034 [INFO] [sway/commands.c:378] Config command: input * xkb_variant "colemak"
00:00:00.034 [INFO] [sway/commands.c:398] After replacement: input * xkb_variant "colemak"
00:00:00.034 [DEBUG] [sway/commands/input.c:54] entering input block: *
00:00:00.034 [DEBUG] [sway/config/input.c:15] new_input_config(*)
00:00:00.034 [DEBUG] [sway/commands.c:429] Subcommand: xkb_variant colemak
00:00:00.034 [DEBUG] [sway/commands/input/xkb_variant.c:18] set-xkb_variant for config: * variant: colemak
00:00:00.034 [DEBUG] [sway/config/input.c:15] new_input_config(temp)
00:00:00.040 [DEBUG] [sway/config/input.c:350] Config stored for input *
00:00:00.040 [DEBUG] [sway/config.c:824] Read line 3: }
00:00:00.040 [DEBUG] [sway/config.c:895] Exiting block 'input *'
00:00:00.057 [DEBUG] [sway/server.c:267] Initializing Xwayland (lazy=1)
00:00:00.057 [INFO] [sway/server.c:290] Starting backend on wayland display 'wayland-1'
00:00:00.057 [INFO] [wlr] [backend/x11/backend.c:166] Starting X11 backend
00:00:00.057 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_keyboard'
00:00:00.057 [DEBUG] [sway/input/input-manager.c:184] no fallback seat config - creating default
00:00:00.057 [DEBUG] [sway/config/seat.c:66] Adding non-wildcard seat config
00:00:00.057 [DEBUG] [sway/config/seat.c:83] Config stored for seat seat0
00:00:00.057 [DEBUG] [sway/input/input-manager.c:585] applying seat config for seat seat0
00:00:00.057 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_keyboard to seat seat0
00:00:00.063 [DEBUG] [sway/input/keyboard.c:937] Created keyboard group 0x56019e2a7d80
00:00:00.064 [DEBUG] [sway/input/keyboard.c:960] Adding keyboard 0:0:X11_keyboard to group 0x56019e2a7d80
00:00:00.076 [DEBUG] [sway/desktop/output.c:857] New output 0x56019e2a98d0: X11-1 (non-desktop: 0)
00:00:00.076 [DEBUG] [sway/config/output.c:390] Turning on output X11-1
00:00:00.076 [DEBUG] [sway/config/output.c:450] Auto-detected output scale: 1.000000
00:00:00.076 [DEBUG] [sway/config/output.c:496] Committing output X11-1
00:00:00.076 [DEBUG] [sway/tree/workspace.c:281] Workspace: Generating new workspace name for output X11-1
00:00:00.076 [DEBUG] [sway/tree/output.c:127] Creating default workspace 1
00:00:00.076 [DEBUG] [sway/tree/workspace.c:63] Adding workspace 1 for output X11-1
00:00:00.104 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:00.128 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default' at size 24 (124 available cursors)
00:00:00.128 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:00.128 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1024x768@0,0
00:00:00.128 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.128 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1024x768@0,0
00:00:00.128 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.136 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x56019e46d060 committing with 2 instructions
00:00:00.136 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x56019e46d060
00:00:00.136 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_pointer'
00:00:00.136 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_pointer to seat seat0
00:00:00.136 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_pointer
00:00:00.137 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_pointer to output X11-1
00:00:00.137 [DEBUG] [sway/input/seat.c:768] Mapped to output X11-1
00:00:00.137 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.137 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 24x24 GBM buffer (format 0x34325241, modifier 0x100000000000001)
00:00:00.137 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 24x24
00:00:00.138 [DEBUG] [wlr] [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 22 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.

00:00:00.138 [DEBUG] [wlr] [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 30 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.

00:00:00.139 [DEBUG] [wlr] [GLES2] VS vec4 shader: 7 inst, 0 loops, 24 cycles, 0:0 spills:fills, 1 sends, compacted 112 to 112 bytes.

00:00:00.139 [DEBUG] [wlr] [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 16 cycles, 0:0 spills:fills, 1 sends, scheduled with mode (null), Promoted 0 constants, compacted 32 to 32 bytes.

00:00:00.139 [DEBUG] [sway/input/input-manager.c:234] adding device: '0:0:X11_touch'
00:00:00.139 [DEBUG] [sway/input/seat.c:939] adding device 0:0:X11_touch to seat seat0
00:00:00.139 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_touch
00:00:00.139 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_touch to output X11-1
00:00:00.139 [DEBUG] [sway/input/seat.c:768] Mapped to output X11-1
00:00:00.139 [INFO] [wlr] [backend/headless/backend.c:18] Starting headless backend
00:00:00.139 [INFO] [sway/server.c:302] Running compositor on wayland display 'wayland-1'
00:00:00.139 [DEBUG] [wlr] [types/output/render.c:73] Choosing primary buffer format 0x34325258 for output 'X11-1'
00:00:00.139 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.141 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 1024x768 GBM buffer (format 0x34325258, modifier 0xFFFFFFFFFFFFFF)
00:00:00.141 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 1024x768
00:00:00.153 [DEBUG] [sway/desktop/layer_shell.c:195] Usable area changed, rearranging output
00:00:00.153 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.153 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.153 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.153 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.153 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x56019e2a7610 committing with 1 instructions
00:00:00.153 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x56019e2a7610
00:00:00.153 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 878x879@0,0
00:00:00.153 [DEBUG] [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.153 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x56019e46cb90 committing with 1 instructions
00:00:00.153 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x56019e46cb90
00:00:00.154 [DEBUG] [wlr] [types/output/render.c:73] Choosing primary buffer format 0x34325258 for output 'X11-1'
00:00:00.154 [DEBUG] [wlr] [render/swapchain.c:105] Allocating new swapchain buffer
00:00:00.156 [DEBUG] [wlr] [render/allocator/gbm.c:140] Allocated 878x879 GBM buffer (format 0x34325258, modifier 0xFFFFFFFFFFFFFF)
00:00:00.156 [DEBUG] [wlr] [render/gles2/renderer.c:142] Created GL FBO for buffer 878x879
00:00:06.208 [DEBUG] [sway/tree/output.c:264] Disabling output 'X11-1'
00:00:06.209 [DEBUG] [sway/tree/workspace.c:143] Destroying workspace '1'
00:00:06.209 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_touch
00:00:06.209 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_touch to output X11-1
00:00:06.209 [DEBUG] [sway/input/seat.c:760] Requested output X11-1 for device 0:0:X11_touch isn't present
00:00:06.209 [DEBUG] [sway/input/seat.c:718] Applying input config to 0:0:X11_pointer
00:00:06.209 [DEBUG] [sway/input/seat.c:748] Mapping input device 0:0:X11_pointer to output X11-1
00:00:06.209 [DEBUG] [sway/input/seat.c:760] Requested output X11-1 for device 0:0:X11_pointer isn't present
00:00:06.220 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x56019e2a7610 committing with 2 instructions
00:00:06.220 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x56019e2a7610
00:00:06.220 [DEBUG] [sway/tree/output.c:288] Destroying output 'X11-1'
00:00:06.220 [DEBUG] [sway/desktop/transaction.c:398] Transaction 0x56019e46cb90 committing with 1 instructions
00:00:06.220 [DEBUG] [sway/desktop/transaction.c:294] Applying transaction 0x56019e46cb90
00:00:06.220 [DEBUG] [sway/input/input-manager.c:202] removing device: '0:0:X11_pointer'
00:00:06.220 [DEBUG] [sway/input/seat.c:959] removing device 0:0:X11_pointer from seat seat0
00:00:06.220 [DEBUG] [sway/input/input-manager.c:202] removing device: '0:0:X11_touch'
00:00:06.220 [DEBUG] [sway/input/seat.c:959] removing device 0:0:X11_touch from seat seat0
00:00:06.234 [DEBUG] [wlr] [backend/x11/backend.c:728] Unhandled X11 event: DestroyNotify (17)

Seems to be config related. But it is weird. I copied the default config from /etc/sway/config to my ~/.config/sway dir. I don't understand why the debug message is talking about colemak keyboard layout in sway2.log.

Last edited by 1uk (2022-01-30 16:23:39)

Offline

#5 2022-01-30 16:23:00

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,499
Website

Re: [Solved] Sway is only a grey screen with moving cursor.

And was sway2.log an attempt that shows the problem you described?  The error message quoted in your first post isn't present.


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#6 2022-01-30 16:35:19

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [Solved] Sway is only a grey screen with moving cursor.

Yes it was an attempt to show the problem. I think the error message in the first post isn't related to the actual problem. At least that's what someone wrote on reddit.
Here is my screen:
https://i.imgur.com/PgSraTM.png
And here the working version:
https://i.imgur.com/2YA9M3d.png

The error message with the drm is in the sway2.log

Sorry for the huge images. I am not good at posting forum posts.
So I can start sway now. But why doesn't it work when I run it without defining the config file?
Is ~/.config/sway/config not the default and first place, where sway looks for the config?


Mod Edit - Replaced oversized images with links.
CoC - Pasting pictures and code

Last edited by Slithery (2022-01-30 16:48:23)

Offline

#7 2022-01-30 16:39:29

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 9,003
Website

Re: [Solved] Sway is only a grey screen with moving cursor.

1uk wrote:

sway2.log:

[...]
00:00:00.034 [INFO] [sway/config.c:407] Loading config from /home/lukas/.sway/config
[...]

So delete ~/.sway/ to make it read from ~/.config/sway/ instead.


Jin, Jîyan, Azadî

Offline

#8 2022-01-30 16:43:13

1uk
Member
Registered: 2013-06-09
Posts: 30

Re: [Solved] Sway is only a grey screen with moving cursor.

Oops :-)  ¯\_(ツ)_/¯
Sorry for not looking into the config file accurately myself.
And thanks!

I deleted the folder ~/.sway and now it works when I just run sway.
Must be a bad config file I made.

Last edited by 1uk (2022-01-30 16:44:29)

Offline

Board footer

Powered by FluxBB