swaywm / sway

i3-compatible Wayland compositor
https://swaywm.org
MIT License
14.45k stars 1.1k forks source link

date: write error: Broken pipe response0 #6142

Closed trentonknight closed 3 years ago

trentonknight commented 3 years ago

Good Day,

I have had a series of IPC client and broken pipe error resulting in sway crashing after opening alacritty terminal or firefox. Sometimes an initial command to Dmenu results in a crash. I have tried with and without GDM enabled and no observable change seems to happen. I am running a new HP OMEN 30L Desktop GT13 with a NVIDIA GeForce RTX 2060. Due to sway issues with Nvidia I am using nouveau modules only as shown below:

vim /etc/modprobe.d/blacklist_i2c-nvidia-gpu.conf
blacklist i2c_nvidia_gpu

Printout from neofetch

                       -`                    trentonknight@archALPHA
                  .o+`                   -----------------------
                 `ooo/                   OS: Arch Linux x86_64
                `+oooo:                  Host: OMEN 30L Desktop GT13-0xxx
               `+oooooo:                 Kernel: 5.11.9-arch1-1
               -+oooooo+:                Uptime: 27 mins
             `/:-:++oooo+:               Packages: 1005 (pacman)
            `/++++/+++++++:              Shell: bash 5.1.4
           `/++++++++++++++:             Resolution: 2560x1080
          `/+++ooooooooooooo/`           WM: sway
         ./ooosssso++osssssso+`          Theme: deepin-dark [GTK2/3]
        .oossssso-````/ossssss+`         Icons: Sea [GTK2/3]
       -osssssso.      :ssssssso.        Terminal: alacritty
      :osssssss/        osssso+++.       CPU: AMD Ryzen 7 3700X (16) @ 3.600GHz
     /ossssssss/        +ssssooo/-       GPU: NVIDIA GeForce RTX 2060 Rev. A
   `/ossssso+/:-        -:/+osssso+-     Memory: 1215MiB / 15974MiB

I am able to run sway for long periods of time. Possible for days without an issue? Its only once I have performed a reboot and attempt to login using the sway command that it crashes. Normally after a few attempts it seemingly stabilizes.

trentonknight@archALPHA ~]$ lsmod | grep nouveau
nouveau              2367488  12
mxm_wmi                16384  1 nouveau
video                  53248  1 nouveau
i2c_algo_bit           16384  1 nouveau
drm_ttm_helper         16384  1 nouveau
ttm                    81920  2 drm_ttm_helper,nouveau
drm_kms_helper        282624  1 nouveau
wmi                    36864  4 hp_wmi,wmi_bmof,mxm_wmi,nouveau
drm                   569344  11 drm_kms_helper,drm_ttm_helper,ttm,nouveau
agpgart                40960  3 ttm,nouveau,drm

The below debug is being run from within sway.

trentonknight@archALPHA ~]$ sway --debug
00:00:00.000 [sway/main.c:326] Sway version 1.5.1
00:00:00.001 [sway/main.c:153] Linux archALPHA 5.11.9-arch1-1 #1 SMP PREEMPT Wed, 24 Mar 2021 18:53:54 +0000 x86_64 GNU/Linux
00:00:00.001 [sway/main.c:169] Contents of /etc/lsb-release:
00:00:00.001 [sway/main.c:153] LSB_VERSION=1.4
00:00:00.001 [sway/main.c:153] DISTRIB_ID=Arch
00:00:00.001 [sway/main.c:153] DISTRIB_RELEASE=rolling
00:00:00.001 [sway/main.c:153] DISTRIB_DESCRIPTION="Arch Linux"
00:00:00.001 [sway/main.c:169] Contents of /etc/os-release:
00:00:00.001 [sway/main.c:153] NAME="Arch Linux"
00:00:00.001 [sway/main.c:153] PRETTY_NAME="Arch Linux"
00:00:00.001 [sway/main.c:153] ID=arch
00:00:00.001 [sway/main.c:153] BUILD_ID=rolling
00:00:00.001 [sway/main.c:153] ANSI_COLOR="38;2;23;147;209"
00:00:00.001 [sway/main.c:153] HOME_URL="https://www.archlinux.org/"
00:00:00.001 [sway/main.c:153] DOCUMENTATION_URL="https://wiki.archlinux.org/"
00:00:00.001 [sway/main.c:153] SUPPORT_URL="https://bbs.archlinux.org/"
00:00:00.001 [sway/main.c:153] BUG_REPORT_URL="https://bugs.archlinux.org/"
00:00:00.001 [sway/main.c:153] LOGO=archlinux
00:00:00.001 [sway/main.c:141] LD_LIBRARY_PATH=(null)
00:00:00.001 [sway/main.c:141] LD_PRELOAD=(null)
00:00:00.001 [sway/main.c:141] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
00:00:00.001 [sway/main.c:141] SWAYSOCK=/run/user/1000/sway-ipc.1000.962.sock
00:00:00.001 [sway/server.c:43] Preparing Wayland server initialization
00:00:00.001 [backend/wayland/backend.c:253] Creating wayland backend

I have had the following errors so far. I apologize as some of the error is missing. Any guidance on pulling or creating proper sway or wayland logs would be appreciated:

date: write error: Broken pipe response0 (res 0x55de7b5d9070)sten 21 -listen 23 -wm 49e9500,00 "width": 0, "height": 0 }, "window": null, "urgent": false, "marks": [], "fullscreen_mode":1, modes": "floating_number".... "output": "HDMI-A-1"

Although, it was not needed before I did set my output in the sway config due to the above error mentioning my monitor.

output HDMI-A-1 resolution 2560x1080 position 0,0

Yes, I have xorg-xwayland installed

extra/xorg-xwayland 21.1.0-1 (xorg) [installed]

Unfortunately, this is only one of a few error I have received. I will update this post and append the others. I appreciate any guidance anyone can offer on where to look first. I can run gnome, lxqt and gdm with zero issues or crashes. The following MarkDown file details my build on a HP OMEN 30L:

emersion commented 3 years ago

Please run Sway from a TTY, and redirect the output to a file:

sway -d >sway.log 2>&1
trentonknight commented 3 years ago

@emersion thank you for guidance with creating a log. I was at a complete loss. Recently, I have noticed if I use Dmenu once opening sway to run firefox, followed by opening the alacritty terminal, it does not crash. If I start sway and immediately fire off a terminal it will always crash. Here is the portion you normally see at the terminal after which I will include the entire log:

00:00:02.674 [INFO] [xwayland/server.c:92] WAYLAND_SOCKET=24 Xwayland :0 -rootless -terminate -listen 21 -listen 23 -wm 49
(WW) Option "-listen" for file descriptors is deprecated
Please use "-listenfd" instead.
(WW) Option "-listen" for file descriptors is deprecated
Please use "-listenfd" instead.
glamor: No eglstream capable devices found
00:00:02.766 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c865369b0 (res 0x557c86536d60)
00:00:02.767 [DEBUG] [xwayland/server.c:343] sent SIGUSR1 to process 32369
(EE) failed to read Wayland events: Connection reset by peer
00:00:02.331 [common/ipc-client.c:88] Unable to receive IPC response
date: write error: Broken pipe

Full sway log from "sway -d > sway.log 2>&1"

Copied the below using wl-clipboard

wl-copy < sway.log
```bash 00:00:00.000 [sway/main.c:326] Sway version 1.5.1 00:00:00.001 [sway/main.c:153] Linux archALPHA 5.11.9-arch1-1 #1 SMP PREEMPT Wed, 24 Mar 2021 18:53:54 +0000 x86_64 GNU/Linux 00:00:00.001 [sway/main.c:169] Contents of /etc/lsb-release: 00:00:00.001 [sway/main.c:153] LSB_VERSION=1.4 00:00:00.001 [sway/main.c:153] DISTRIB_ID=Arch 00:00:00.001 [sway/main.c:153] DISTRIB_RELEASE=rolling 00:00:00.001 [sway/main.c:153] DISTRIB_DESCRIPTION="Arch Linux" 00:00:00.001 [sway/main.c:169] Contents of /etc/os-release: 00:00:00.001 [sway/main.c:153] NAME="Arch Linux" 00:00:00.001 [sway/main.c:153] PRETTY_NAME="Arch Linux" 00:00:00.001 [sway/main.c:153] ID=arch 00:00:00.001 [sway/main.c:153] BUILD_ID=rolling 00:00:00.001 [sway/main.c:153] ANSI_COLOR="38;2;23;147;209" 00:00:00.001 [sway/main.c:153] HOME_URL="https://www.archlinux.org/" 00:00:00.001 [sway/main.c:153] DOCUMENTATION_URL="https://wiki.archlinux.org/" 00:00:00.001 [sway/main.c:153] SUPPORT_URL="https://bbs.archlinux.org/" 00:00:00.001 [sway/main.c:153] BUG_REPORT_URL="https://bugs.archlinux.org/" 00:00:00.001 [sway/main.c:153] LOGO=archlinux 00:00:00.001 [sway/main.c:141] LD_LIBRARY_PATH=(null) 00:00:00.001 [sway/main.c:141] LD_PRELOAD=(null) 00:00:00.001 [sway/main.c:141] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl 00:00:00.001 [sway/main.c:141] SWAYSOCK=(null) 00:00:00.001 [sway/server.c:43] Preparing Wayland server initialization 00:00:00.005 [INFO] [backend/session/logind.c:853] Successfully loaded logind session 00:00:00.006 [INFO] [backend/backend.c:157] Found 1 GPUs 00:00:00.006 [INFO] [backend/drm/backend.c:138] Initializing DRM backend for /dev/dri/card0 (nouveau) 00:00:00.006 [DEBUG] [backend/drm/drm.c:66] Atomic modesetting unsupported, using legacy DRM interface 00:00:00.006 [INFO] [backend/drm/drm.c:255] Found 4 DRM CRTCs 00:00:00.006 [INFO] [backend/drm/drm.c:176] Found 12 DRM planes 00:00:00.031 [INFO] [render/egl.c:297] Using EGL 1.5 00:00:00.031 [INFO] [render/egl.c:298] 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_gbm EGL_KHR_platform_gbm EGL_MESA_platform_surfaceless 00:00:00.031 [INFO] [render/egl.c:299] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_EXT_buffer_age EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_cl_event2 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 EGL_KHR_image_base EGL_KHR_image_pixmap 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.031 [INFO] [render/egl.c:300] EGL vendor: Mesa Project 00:00:00.031 [DEBUG] [render/egl.c:175] Supported dmabuf buffer 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.034 [INFO] [render/gles2/renderer.c:674] Using OpenGL ES 3.2 Mesa 20.3.4 00:00:00.034 [INFO] [render/gles2/renderer.c:675] GL vendor: nouveau 00:00:00.034 [INFO] [render/gles2/renderer.c:676] GL renderer: NV166 00:00:00.034 [INFO] [render/gles2/renderer.c:677] 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_OES_viewport_array 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_KHR_texture_compression_astc_ldr 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_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_ANDROID_extension_pack_es31a GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_copy_image GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_gpu_shader5 GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box GL_EXT_render_snorm GL_EXT_shader_io_blocks GL_EXT_texture_border_clamp GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_texture_norm16 GL_EXT_texture_view GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_robust_buffer_access_behavior GL_NV_image_formats GL_OES_copy_image GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_gpu_shader5 GL_OES_primitive_bounding_box GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_io_blocks GL_OES_shader_multisample_interpolation GL_OES_tessellation_point_size GL_OES_tessellation_shader GL_OES_texture_border_clamp GL_OES_texture_buffer GL_OES_texture_cube_map_array GL_OES_texture_stencil8 GL_OES_texture_storage_multisample_2d_array GL_OES_texture_view GL_EXT_blend_func_extended GL_EXT_buffer_storage GL_EXT_float_blend GL_EXT_geometry_point_size GL_EXT_geometry_shader GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_NV_conservative_raster GL_NV_conservative_raster_dilate GL_NV_conservative_raster_pre_snap_triangles GL_NV_sample_locations GL_NV_viewport_array2 GL_NV_viewport_swizzle GL_OES_EGL_image_external_essl3 GL_OES_geometry_point_size GL_OES_geometry_shader GL_OES_shader_image_atomic GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_EXT_window_rectangles GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_texture_compression_bptc GL_KHR_parallel_shader_compile GL_EXT_EGL_image_storage GL_EXT_texture_shadow_lod GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod 00:00:00.037 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 12, inst: 18, bytes: 288, cached: 1489 00:00:00.037 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 9, inst: 11, bytes: 176, cached: 701 00:00:00.037 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 16, inst: 22, bytes: 352, cached: 1625 00:00:00.037 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 9, inst: 21, bytes: 336, cached: 973 00:00:00.037 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 12, inst: 19, bytes: 304, cached: 1621 00:00:00.037 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 8, inst: 12, bytes: 192, cached: 845 00:00:00.037 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 12, inst: 19, bytes: 304, cached: 1621 00:00:00.037 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 8, inst: 12, bytes: 192, cached: 869 00:00:00.037 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 12, inst: 19, bytes: 304, cached: 1621 00:00:00.037 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 8, inst: 12, bytes: 192, cached: 845 00:00:00.037 [sway/main.c:373] Starting sway version 1.5.1 00:00:00.037 [sway/server.c:56] Initializing Wayland server 00:00:00.037 [DEBUG] [types/wlr_idle.c:247] idle manager created 00:00:00.037 [INFO] [backend/noop/backend.c:51] Creating noop backend 00:00:00.037 [INFO] [backend/headless/backend.c:171] Creating headless backend 00:00:00.039 [sway/config.c:379] Loading config from /home/trentonknight/.config/sway/config 00:00:00.039 [sway/config.c:789] Read line 1: # Default config for sway 00:00:00.039 [sway/config.c:789] Read line 2: # 00:00:00.039 [sway/config.c:789] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking. 00:00:00.039 [sway/config.c:789] Read line 4: # 00:00:00.039 [sway/config.c:789] Read line 5: # Read `man 5 sway` for a complete reference. 00:00:00.039 [sway/config.c:789] Read line 6: gaps outer 10 00:00:00.039 [sway/commands.c:372] Config command: gaps outer 10 00:00:00.039 [sway/commands.c:392] After replacement: gaps outer 10 00:00:00.039 [sway/config.c:789] Read line 7: gaps inner 20 00:00:00.039 [sway/commands.c:372] Config command: gaps inner 20 00:00:00.039 [sway/commands.c:392] After replacement: gaps inner 20 00:00:00.039 [sway/config.c:789] Read line 8: 00:00:00.039 [sway/config.c:789] Read line 9: ### Variables 00:00:00.039 [sway/config.c:789] Read line 10: # 00:00:00.039 [sway/config.c:789] Read line 11: # Logo key. Use Mod1 for Alt. 00:00:00.039 [sway/config.c:789] Read line 12: set $mod Mod4 00:00:00.039 [sway/commands.c:372] Config command: set $mod Mod4 00:00:00.039 [sway/commands.c:392] After replacement: set $mod Mod4 00:00:00.039 [sway/config.c:789] Read line 13: # Home row direction keys, like vim 00:00:00.039 [sway/config.c:789] Read line 14: set $left h 00:00:00.039 [sway/commands.c:372] Config command: set $left h 00:00:00.039 [sway/commands.c:392] After replacement: set $left h 00:00:00.039 [sway/config.c:789] Read line 15: set $down j 00:00:00.039 [sway/commands.c:372] Config command: set $down j 00:00:00.039 [sway/commands.c:392] After replacement: set $down j 00:00:00.039 [sway/config.c:789] Read line 16: set $up k 00:00:00.039 [sway/commands.c:372] Config command: set $up k 00:00:00.039 [sway/commands.c:392] After replacement: set $up k 00:00:00.039 [sway/config.c:789] Read line 17: set $right l 00:00:00.039 [sway/commands.c:372] Config command: set $right l 00:00:00.039 [sway/commands.c:392] After replacement: set $right l 00:00:00.039 [sway/config.c:789] Read line 18: # Your preferred terminal emulator 00:00:00.039 [sway/config.c:789] Read line 19: set $term alacritty 00:00:00.039 [sway/commands.c:372] Config command: set $term alacritty 00:00:00.039 [sway/commands.c:392] After replacement: set $term alacritty 00:00:00.039 [sway/config.c:789] Read line 20: # Your preferred application launcher 00:00:00.039 [sway/config.c:789] Read line 21: # Note: pass the final command to swaymsg so that the resulting window can be opened 00:00:00.039 [sway/config.c:789] Read line 22: # on the original workspace that the command was run on. 00:00:00.039 [sway/config.c:789] Read line 23: #set $menu dmenu_path | dmenu | xargs swaymsg exec -- 00:00:00.039 [sway/config.c:789] Read line 24: set $menu dmenu_path | dmenu | xargs swaymsg exec -- 00:00:00.039 [sway/commands.c:372] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec -- 00:00:00.039 [sway/commands.c:392] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec -- 00:00:00.039 [sway/config.c:789] Read line 25: 00:00:00.039 [sway/config.c:789] Read line 26: ### Output configuration 00:00:00.039 [sway/config.c:789] Read line 27: # 00:00:00.039 [sway/config.c:789] Read line 28: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) 00:00:00.039 [sway/config.c:789] Read line 29: output * bg ~/Pictures/wallpaper.jpg fill 00:00:00.039 [sway/commands.c:372] Config command: output * bg ~/Pictures/wallpaper.jpg fill 00:00:00.039 [sway/commands.c:392] After replacement: output * bg ~/Pictures/wallpaper.jpg fill 00:00:00.039 [sway/commands.c:423] Subcommand: bg ~/Pictures/wallpaper.jpg fill 00:00:00.039 [sway/config/output.c:223] Adding output * config 00:00:00.039 [sway/config/output.c:227] Config stored for output * (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/trentonknight/Pictures/wallpaper.jpg fill) (dpms 0) (max render time: -1) 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[0] = swaybg 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[1] = -o 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[2] = * 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[3] = -i 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[4] = /home/trentonknight/Pictures/wallpaper.jpg 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[5] = -m 00:00:00.039 [sway/config/output.c:789] spawn_swaybg cmd[6] = fill 00:00:00.041 [sway/config.c:789] Read line 30: # 00:00:00.041 [sway/config.c:789] Read line 31: # Example configuration: 00:00:00.041 [sway/config.c:789] Read line 32: # 00:00:00.041 [sway/config.c:789] Read line 33: output HDMI-A-1 resolution 2560x1080 position 0,0 00:00:00.041 [sway/commands.c:372] Config command: output HDMI-A-1 resolution 2560x1080 position 0,0 00:00:00.041 [sway/commands.c:392] After replacement: output HDMI-A-1 resolution 2560x1080 position 0,0 00:00:00.041 [sway/commands.c:423] Subcommand: resolution 2560x1080 position 0,0 00:00:00.041 [sway/commands.c:423] Subcommand: position 0,0 00:00:00.041 [sway/config/output.c:210] Adding non-wildcard output config 00:00:00.041 [sway/config/output.c:213] Merging on top of output * config 00:00:00.041 [sway/config/output.c:227] Config stored for output HDMI-A-1 (enabled: -1) (2560x1080@-1.000000Hz position 0,0 scale -1.000000 subpixel unknown transform -1) (bg /home/trentonknight/Pictures/wallpaper.jpg fill) (dpms 0) (max render time: -1) 00:00:00.041 [sway/config.c:789] Read line 34: # 00:00:00.041 [sway/config.c:789] Read line 35: # You can get the names of your outputs by running: swaymsg -t get_outputs 00:00:00.041 [sway/config.c:789] Read line 36: 00:00:00.041 [sway/config.c:789] Read line 37: ### Idle configuration 00:00:00.041 [sway/config.c:789] Read line 38: # 00:00:00.041 [sway/config.c:789] Read line 39: # Example configuration: 00:00:00.041 [sway/config.c:789] Read line 40: # 00:00:00.041 [sway/config.c:789] Read line 44: exec swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000' 00:00:00.041 [sway/commands.c:372] Config command: exec swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000' 00:00:00.041 [sway/commands.c:392] After replacement: exec swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000' 00:00:00.041 [sway/config.c:833] Deferring command `exec swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000'' 00:00:00.041 [sway/config.c:789] Read line 45: # 00:00:00.041 [sway/config.c:789] Read line 46: # This will lock your screen after 300 seconds of inactivity, then turn off 00:00:00.041 [sway/config.c:789] Read line 47: # your displays after another 300 seconds, and turn your screens back on when 00:00:00.041 [sway/config.c:789] Read line 48: # resumed. It will also lock your screen before your computer goes to sleep. 00:00:00.041 [sway/config.c:789] Read line 49: 00:00:00.041 [sway/config.c:789] Read line 50: ### Input configuration 00:00:00.041 [sway/config.c:789] Read line 51: # 00:00:00.041 [sway/config.c:789] Read line 52: # Example configuration: 00:00:00.041 [sway/config.c:789] Read line 53: # 00:00:00.041 [sway/config.c:789] Read line 54: # input "2:14:SynPS/2_Synaptics_TouchPad" { 00:00:00.041 [sway/config.c:789] Read line 55: # dwt enabled 00:00:00.041 [sway/config.c:789] Read line 56: # tap enabled 00:00:00.041 [sway/config.c:789] Read line 57: # natural_scroll enabled 00:00:00.041 [sway/config.c:789] Read line 58: # middle_emulation enabled 00:00:00.041 [sway/config.c:789] Read line 59: # } 00:00:00.041 [sway/config.c:789] Read line 60: # 00:00:00.041 [sway/config.c:789] Read line 61: # You can get the names of your inputs by running: swaymsg -t get_inputs 00:00:00.041 [sway/config.c:789] Read line 62: # Read `man 5 sway-input` for more information about this section. 00:00:00.041 [sway/config.c:789] Read line 63: 00:00:00.041 [sway/config.c:789] Read line 64: ### Key bindings 00:00:00.041 [sway/config.c:789] Read line 65: # 00:00:00.041 [sway/config.c:789] Read line 66: # Basics: 00:00:00.041 [sway/config.c:789] Read line 67: # 00:00:00.041 [sway/config.c:789] Read line 68: # Start a terminal 00:00:00.041 [sway/config.c:789] Read line 69: bindsym $mod+Return exec $term 00:00:00.041 [sway/commands.c:372] Config command: bindsym $mod+Return exec $term 00:00:00.041 [sway/commands.c:392] After replacement: bindsym Mod4+Return exec alacritty 00:00:00.041 [sway/commands/bind.c:297] bindsym - Bound Mod4+Return to command `exec alacritty` for device '*' 00:00:00.041 [sway/config.c:789] Read line 70: 00:00:00.041 [sway/config.c:789] Read line 71: # Kill focused window 00:00:00.041 [sway/config.c:789] Read line 72: bindsym $mod+Shift+q kill 00:00:00.041 [sway/commands.c:372] Config command: bindsym $mod+Shift+q kill 00:00:00.041 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+q kill 00:00:00.041 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+q to command `kill` for device '*' 00:00:00.041 [sway/config.c:789] Read line 73: 00:00:00.041 [sway/config.c:789] Read line 74: # Start your launcher 00:00:00.041 [sway/config.c:789] Read line 75: bindsym $mod+d exec $menu 00:00:00.041 [sway/commands.c:372] Config command: bindsym $mod+d exec $menu 00:00:00.041 [sway/commands.c:392] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec -- 00:00:00.041 [sway/commands/bind.c:297] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*' 00:00:00.041 [sway/config.c:789] Read line 76: 00:00:00.041 [sway/config.c:789] Read line 77: # Drag floating windows by holding down $mod and left mouse button. 00:00:00.041 [sway/config.c:789] Read line 78: # Resize them with right mouse button + $mod. 00:00:00.041 [sway/config.c:789] Read line 79: # Despite the name, also works for non-floating windows. 00:00:00.041 [sway/config.c:789] Read line 80: # Change normal to inverse to use left mouse button for resizing and right 00:00:00.041 [sway/config.c:789] Read line 81: # mouse button for dragging. 00:00:00.041 [sway/config.c:789] Read line 82: floating_modifier $mod normal 00:00:00.042 [sway/commands.c:372] Config command: floating_modifier $mod normal 00:00:00.042 [sway/commands.c:392] After replacement: floating_modifier Mod4 normal 00:00:00.042 [sway/config.c:789] Read line 83: 00:00:00.042 [sway/config.c:789] Read line 84: # Reload the configuration file 00:00:00.042 [sway/config.c:789] Read line 85: bindsym $mod+Shift+c reload 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+c reload 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+c reload 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+c to command `reload` for device '*' 00:00:00.042 [sway/config.c:789] Read line 86: 00:00:00.042 [sway/config.c:789] Read line 87: # Exit sway (logs you out of your Wayland session) 00:00:00.042 [sway/config.c:789] Read line 88: 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.042 [sway/commands.c:372] 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.042 [sway/commands.c:392] 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.042 [sway/commands/bind.c:297] 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.042 [sway/config.c:789] Read line 89: # 00:00:00.042 [sway/config.c:789] Read line 90: # Moving around: 00:00:00.042 [sway/config.c:789] Read line 91: # 00:00:00.042 [sway/config.c:789] Read line 92: # Move your focus around 00:00:00.042 [sway/config.c:789] Read line 93: bindsym $mod+$left focus left 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+$left focus left 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+h focus left 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+h to command `focus left` for device '*' 00:00:00.042 [sway/config.c:789] Read line 94: bindsym $mod+$down focus down 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+$down focus down 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+j focus down 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+j to command `focus down` for device '*' 00:00:00.042 [sway/config.c:789] Read line 95: bindsym $mod+$up focus up 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+$up focus up 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+k focus up 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+k to command `focus up` for device '*' 00:00:00.042 [sway/config.c:789] Read line 96: bindsym $mod+$right focus right 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+$right focus right 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+l focus right 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+l to command `focus right` for device '*' 00:00:00.042 [sway/config.c:789] Read line 97: # Or use $mod+[up|down|left|right] 00:00:00.042 [sway/config.c:789] Read line 98: bindsym $mod+Left focus left 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Left focus left 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Left focus left 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Left to command `focus left` for device '*' 00:00:00.042 [sway/config.c:789] Read line 99: bindsym $mod+Down focus down 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Down focus down 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Down focus down 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Down to command `focus down` for device '*' 00:00:00.042 [sway/config.c:789] Read line 100: bindsym $mod+Up focus up 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Up focus up 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Up focus up 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Up to command `focus up` for device '*' 00:00:00.042 [sway/config.c:789] Read line 101: bindsym $mod+Right focus right 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Right focus right 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Right focus right 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Right to command `focus right` for device '*' 00:00:00.042 [sway/config.c:789] Read line 102: 00:00:00.042 [sway/config.c:789] Read line 103: # Move the focused window with the same, but add Shift 00:00:00.042 [sway/config.c:789] Read line 104: bindsym $mod+Shift+$left move left 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+$left move left 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+h move left 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+h to command `move left` for device '*' 00:00:00.042 [sway/config.c:789] Read line 105: bindsym $mod+Shift+$down move down 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+$down move down 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+j move down 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+j to command `move down` for device '*' 00:00:00.042 [sway/config.c:789] Read line 106: bindsym $mod+Shift+$up move up 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+$up move up 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+k move up 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+k to command `move up` for device '*' 00:00:00.042 [sway/config.c:789] Read line 107: bindsym $mod+Shift+$right move right 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+$right move right 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+l move right 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+l to command `move right` for device '*' 00:00:00.042 [sway/config.c:789] Read line 108: # Ditto, with arrow keys 00:00:00.042 [sway/config.c:789] Read line 109: bindsym $mod+Shift+Left move left 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+Left move left 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Left move left 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*' 00:00:00.042 [sway/config.c:789] Read line 110: bindsym $mod+Shift+Down move down 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+Down move down 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Down move down 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*' 00:00:00.042 [sway/config.c:789] Read line 111: bindsym $mod+Shift+Up move up 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+Up move up 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Up move up 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*' 00:00:00.042 [sway/config.c:789] Read line 112: bindsym $mod+Shift+Right move right 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+Right move right 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Right move right 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*' 00:00:00.042 [sway/config.c:789] Read line 113: # 00:00:00.042 [sway/config.c:789] Read line 114: # Workspaces: 00:00:00.042 [sway/config.c:789] Read line 115: # 00:00:00.042 [sway/config.c:789] Read line 116: # Switch to workspace 00:00:00.042 [sway/config.c:789] Read line 117: bindsym $mod+1 workspace number 1 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+1 workspace number 1 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+1 workspace number 1 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+1 to command `workspace number 1` for device '*' 00:00:00.042 [sway/config.c:789] Read line 118: bindsym $mod+2 workspace number 2 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+2 workspace number 2 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+2 workspace number 2 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+2 to command `workspace number 2` for device '*' 00:00:00.042 [sway/config.c:789] Read line 119: bindsym $mod+3 workspace number 3 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+3 workspace number 3 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+3 workspace number 3 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+3 to command `workspace number 3` for device '*' 00:00:00.042 [sway/config.c:789] Read line 120: bindsym $mod+4 workspace number 4 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+4 workspace number 4 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+4 workspace number 4 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+4 to command `workspace number 4` for device '*' 00:00:00.042 [sway/config.c:789] Read line 121: bindsym $mod+5 workspace number 5 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+5 workspace number 5 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+5 workspace number 5 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+5 to command `workspace number 5` for device '*' 00:00:00.042 [sway/config.c:789] Read line 122: bindsym $mod+6 workspace number 6 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+6 workspace number 6 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+6 workspace number 6 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+6 to command `workspace number 6` for device '*' 00:00:00.042 [sway/config.c:789] Read line 123: bindsym $mod+7 workspace number 7 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+7 workspace number 7 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+7 workspace number 7 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+7 to command `workspace number 7` for device '*' 00:00:00.042 [sway/config.c:789] Read line 124: bindsym $mod+8 workspace number 8 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+8 workspace number 8 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+8 workspace number 8 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+8 to command `workspace number 8` for device '*' 00:00:00.042 [sway/config.c:789] Read line 125: bindsym $mod+9 workspace number 9 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+9 workspace number 9 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+9 workspace number 9 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+9 to command `workspace number 9` for device '*' 00:00:00.042 [sway/config.c:789] Read line 126: bindsym $mod+0 workspace number 10 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+0 workspace number 10 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+0 workspace number 10 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+0 to command `workspace number 10` for device '*' 00:00:00.042 [sway/config.c:789] Read line 127: # Move focused container to workspace 00:00:00.042 [sway/config.c:789] Read line 128: bindsym $mod+Shift+1 move container to workspace number 1 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+1 move container to workspace number 1 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+1 move container to workspace number 1 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+1 to command `move container to workspace number 1` for device '*' 00:00:00.042 [sway/config.c:789] Read line 129: bindsym $mod+Shift+2 move container to workspace number 2 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+2 move container to workspace number 2 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+2 move container to workspace number 2 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+2 to command `move container to workspace number 2` for device '*' 00:00:00.042 [sway/config.c:789] Read line 130: bindsym $mod+Shift+3 move container to workspace number 3 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+3 move container to workspace number 3 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+3 move container to workspace number 3 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+3 to command `move container to workspace number 3` for device '*' 00:00:00.042 [sway/config.c:789] Read line 131: bindsym $mod+Shift+4 move container to workspace number 4 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+4 move container to workspace number 4 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+4 move container to workspace number 4 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+4 to command `move container to workspace number 4` for device '*' 00:00:00.042 [sway/config.c:789] Read line 132: bindsym $mod+Shift+5 move container to workspace number 5 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+5 move container to workspace number 5 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+5 move container to workspace number 5 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+5 to command `move container to workspace number 5` for device '*' 00:00:00.042 [sway/config.c:789] Read line 133: bindsym $mod+Shift+6 move container to workspace number 6 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+6 move container to workspace number 6 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+6 move container to workspace number 6 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+6 to command `move container to workspace number 6` for device '*' 00:00:00.042 [sway/config.c:789] Read line 134: bindsym $mod+Shift+7 move container to workspace number 7 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+7 move container to workspace number 7 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+7 move container to workspace number 7 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+7 to command `move container to workspace number 7` for device '*' 00:00:00.042 [sway/config.c:789] Read line 135: bindsym $mod+Shift+8 move container to workspace number 8 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+8 move container to workspace number 8 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+8 move container to workspace number 8 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+8 to command `move container to workspace number 8` for device '*' 00:00:00.042 [sway/config.c:789] Read line 136: bindsym $mod+Shift+9 move container to workspace number 9 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+9 move container to workspace number 9 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+9 move container to workspace number 9 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+9 to command `move container to workspace number 9` for device '*' 00:00:00.042 [sway/config.c:789] Read line 137: bindsym $mod+Shift+0 move container to workspace number 10 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+0 move container to workspace number 10 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+0 move container to workspace number 10 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+0 to command `move container to workspace number 10` for device '*' 00:00:00.042 [sway/config.c:789] Read line 138: # Note: workspaces can have any name you want, not just numbers. 00:00:00.042 [sway/config.c:789] Read line 139: # We just use 1-10 as the default. 00:00:00.042 [sway/config.c:789] Read line 140: # 00:00:00.042 [sway/config.c:789] Read line 141: # Layout stuff: 00:00:00.042 [sway/config.c:789] Read line 142: # 00:00:00.042 [sway/config.c:789] Read line 143: # You can "split" the current object of your focus with 00:00:00.042 [sway/config.c:789] Read line 144: # $mod+b or $mod+v, for horizontal and vertical splits 00:00:00.042 [sway/config.c:789] Read line 145: # respectively. 00:00:00.042 [sway/config.c:789] Read line 146: bindsym $mod+b splith 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+b splith 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+b splith 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+b to command `splith` for device '*' 00:00:00.042 [sway/config.c:789] Read line 147: bindsym $mod+v splitv 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+v splitv 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+v splitv 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+v to command `splitv` for device '*' 00:00:00.042 [sway/config.c:789] Read line 148: 00:00:00.042 [sway/config.c:789] Read line 149: # Switch the current container between different layout styles 00:00:00.042 [sway/config.c:789] Read line 150: bindsym $mod+s layout stacking 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+s layout stacking 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+s layout stacking 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+s to command `layout stacking` for device '*' 00:00:00.042 [sway/config.c:789] Read line 151: bindsym $mod+w layout tabbed 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+w layout tabbed 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+w layout tabbed 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+w to command `layout tabbed` for device '*' 00:00:00.042 [sway/config.c:789] Read line 152: bindsym $mod+e layout toggle split 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+e layout toggle split 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+e layout toggle split 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+e to command `layout toggle split` for device '*' 00:00:00.042 [sway/config.c:789] Read line 153: 00:00:00.042 [sway/config.c:789] Read line 154: # Make the current focus fullscreen 00:00:00.042 [sway/config.c:789] Read line 155: bindsym $mod+f fullscreen 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+f fullscreen 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+f fullscreen 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+f to command `fullscreen` for device '*' 00:00:00.042 [sway/config.c:789] Read line 156: 00:00:00.042 [sway/config.c:789] Read line 157: # Toggle the current focus between tiling and floating mode 00:00:00.042 [sway/config.c:789] Read line 158: bindsym $mod+Shift+space floating toggle 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+space floating toggle 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+space floating toggle 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*' 00:00:00.042 [sway/config.c:789] Read line 159: 00:00:00.042 [sway/config.c:789] Read line 160: # Swap focus between the tiling area and the floating area 00:00:00.042 [sway/config.c:789] Read line 161: bindsym $mod+space focus mode_toggle 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+space focus mode_toggle 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+space focus mode_toggle 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*' 00:00:00.042 [sway/config.c:789] Read line 162: 00:00:00.042 [sway/config.c:789] Read line 163: # Move focus to the parent container 00:00:00.042 [sway/config.c:789] Read line 164: bindsym $mod+a focus parent 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+a focus parent 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+a focus parent 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+a to command `focus parent` for device '*' 00:00:00.042 [sway/config.c:789] Read line 165: # 00:00:00.042 [sway/config.c:789] Read line 166: # Scratchpad: 00:00:00.042 [sway/config.c:789] Read line 167: # 00:00:00.042 [sway/config.c:789] Read line 168: # Sway has a "scratchpad", which is a bag of holding for windows. 00:00:00.042 [sway/config.c:789] Read line 169: # You can send windows there and get them back later. 00:00:00.042 [sway/config.c:789] Read line 170: 00:00:00.042 [sway/config.c:789] Read line 171: # Move the currently focused window to the scratchpad 00:00:00.042 [sway/config.c:789] Read line 172: bindsym $mod+Shift+minus move scratchpad 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+Shift+minus move scratchpad 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+minus move scratchpad 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*' 00:00:00.042 [sway/config.c:789] Read line 173: 00:00:00.042 [sway/config.c:789] Read line 174: # Show the next scratchpad window or hide the focused scratchpad window. 00:00:00.042 [sway/config.c:789] Read line 175: # If there are multiple scratchpad windows, this command cycles through them. 00:00:00.042 [sway/config.c:789] Read line 176: bindsym $mod+minus scratchpad show 00:00:00.042 [sway/commands.c:372] Config command: bindsym $mod+minus scratchpad show 00:00:00.042 [sway/commands.c:392] After replacement: bindsym Mod4+minus scratchpad show 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*' 00:00:00.042 [sway/config.c:789] Read line 177: # 00:00:00.042 [sway/config.c:789] Read line 178: # Resizing containers: 00:00:00.042 [sway/config.c:789] Read line 179: # 00:00:00.042 [sway/config.c:789] Read line 180: mode "resize" { 00:00:00.042 [sway/config.c:843] Entering block 'mode "resize"' 00:00:00.042 [sway/config.c:789] Read line 181: # left will shrink the containers width 00:00:00.042 [sway/config.c:789] Read line 182: # right will grow the containers width 00:00:00.042 [sway/config.c:789] Read line 183: # up will shrink the containers height 00:00:00.042 [sway/config.c:789] Read line 184: # down will grow the containers height 00:00:00.042 [sway/config.c:789] Read line 185: bindsym $left resize shrink width 10px 00:00:00.042 [sway/commands.c:372] Config command: mode "resize" bindsym $left resize shrink width 10px 00:00:00.042 [sway/commands.c:392] After replacement: mode "resize" bindsym h resize shrink width 10px 00:00:00.042 [sway/commands.c:423] Subcommand: bindsym h resize shrink width 10px 00:00:00.042 [sway/commands/bind.c:297] bindsym - Bound h to command `resize shrink width 10px` for device '*' 00:00:00.042 [sway/config.c:789] Read line 186: bindsym $down resize grow height 10px 00:00:00.042 [sway/commands.c:372] Config command: mode "resize" bindsym $down resize grow height 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym j resize grow height 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym j resize grow height 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound j to command `resize grow height 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 187: bindsym $up resize shrink height 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym $up resize shrink height 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym k resize shrink height 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym k resize shrink height 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound k to command `resize shrink height 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 188: bindsym $right resize grow width 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym $right resize grow width 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym l resize grow width 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym l resize grow width 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound l to command `resize grow width 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 189: 00:00:00.043 [sway/config.c:789] Read line 190: # Ditto, with arrow keys 00:00:00.043 [sway/config.c:789] Read line 191: bindsym Left resize shrink width 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Left resize shrink width 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Left resize shrink width 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Left resize shrink width 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Left to command `resize shrink width 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 192: bindsym Down resize grow height 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Down resize grow height 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Down resize grow height 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Down resize grow height 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Down to command `resize grow height 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 193: bindsym Up resize shrink height 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Up resize shrink height 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Up resize shrink height 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Up resize shrink height 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Up to command `resize shrink height 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 194: bindsym Right resize grow width 10px 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Right resize grow width 10px 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Right resize grow width 10px 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Right resize grow width 10px 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Right to command `resize grow width 10px` for device '*' 00:00:00.043 [sway/config.c:789] Read line 195: 00:00:00.043 [sway/config.c:789] Read line 196: # Return to default mode 00:00:00.043 [sway/config.c:789] Read line 197: bindsym Return mode "default" 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Return mode "default" 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Return mode "default" 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Return mode "default" 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Return to command `mode "default"` for device '*' 00:00:00.043 [sway/config.c:789] Read line 198: bindsym Escape mode "default" 00:00:00.043 [sway/commands.c:372] Config command: mode "resize" bindsym Escape mode "default" 00:00:00.043 [sway/commands.c:392] After replacement: mode "resize" bindsym Escape mode "default" 00:00:00.043 [sway/commands.c:423] Subcommand: bindsym Escape mode "default" 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Escape to command `mode "default"` for device '*' 00:00:00.043 [sway/config.c:789] Read line 199: } 00:00:00.043 [sway/config.c:860] Exiting block 'mode "resize"' 00:00:00.043 [sway/config.c:789] Read line 200: bindsym $mod+r mode "resize" 00:00:00.043 [sway/commands.c:372] Config command: bindsym $mod+r mode "resize" 00:00:00.043 [sway/commands.c:392] After replacement: bindsym Mod4+r mode "resize" 00:00:00.043 [sway/commands/bind.c:297] bindsym - Bound Mod4+r to command `mode "resize"` for device '*' 00:00:00.043 [sway/config.c:789] Read line 201: 00:00:00.043 [sway/config.c:789] Read line 202: # 00:00:00.043 [sway/config.c:789] Read line 203: # Status Bar: 00:00:00.043 [sway/config.c:789] Read line 204: # 00:00:00.043 [sway/config.c:789] Read line 205: # Read `man 5 sway-bar` for more information about this section. 00:00:00.043 [sway/config.c:789] Read line 206: bar { 00:00:00.043 [sway/config.c:843] Entering block 'bar' 00:00:00.043 [sway/config.c:789] Read line 207: position top 00:00:00.043 [sway/commands.c:372] Config command: bar position top 00:00:00.043 [sway/commands.c:392] After replacement: bar position top 00:00:00.043 [sway/commands/bar.c:92] Creating bar: bar-0 00:00:00.043 [sway/commands.c:423] Subcommand: position top 00:00:00.043 [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0 00:00:00.043 [sway/config.c:789] Read line 208: # When the status_command prints a new line to stdout, swaybar updates. 00:00:00.043 [sway/config.c:789] Read line 209: # The default just shows the current date and time. 00:00:00.043 [sway/config.c:789] Read line 210: status_command while date +'%R %d-%b-%y'; do sleep 1; done 00:00:00.043 [sway/commands.c:372] Config command: bar status_command while date +'%R %d-%b-%y'; do sleep 1; done 00:00:00.043 [sway/commands.c:392] After replacement: bar status_command while date +'%R %d-%b-%y'; do sleep 1; done 00:00:00.043 [sway/commands.c:423] Subcommand: status_command while date +'%R %d-%b-%y'; do sleep 1; done 00:00:00.043 [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%R %d-%b-%y'; do sleep 1; done 00:00:00.043 [sway/config.c:789] Read line 211: colors { 00:00:00.043 [sway/config.c:843] Entering block 'bar colors' 00:00:00.043 [sway/config.c:789] Read line 212: statusline #ffffff 00:00:00.043 [sway/commands.c:372] Config command: bar colors statusline #ffffff 00:00:00.043 [sway/commands.c:392] After replacement: bar colors statusline #ffffff 00:00:00.043 [sway/commands.c:423] Subcommand: colors statusline #ffffff 00:00:00.043 [sway/commands.c:423] Subcommand: statusline #ffffff 00:00:00.043 [sway/config.c:789] Read line 213: background #323232 00:00:00.043 [sway/commands.c:372] Config command: bar colors background #323232 00:00:00.043 [sway/commands.c:392] After replacement: bar colors background #323232 00:00:00.043 [sway/commands.c:423] Subcommand: colors background #323232 00:00:00.043 [sway/commands.c:423] Subcommand: background #323232 00:00:00.043 [sway/config.c:789] Read line 214: inactive_workspace #32323200 #32323200 #5c5c5c 00:00:00.043 [sway/commands.c:372] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c 00:00:00.043 [sway/commands.c:392] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c 00:00:00.043 [sway/commands.c:423] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c 00:00:00.043 [sway/commands.c:423] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c 00:00:00.043 [sway/config.c:789] Read line 215: } 00:00:00.043 [sway/config.c:860] Exiting block 'bar colors' 00:00:00.043 [sway/config.c:789] Read line 216: } 00:00:00.043 [sway/config.c:860] Exiting block 'bar' 00:00:00.043 [sway/config.c:789] Read line 217: 00:00:00.043 [sway/config.c:789] Read line 218: include /etc/sway/config.d/* 00:00:00.043 [sway/commands.c:372] Config command: include /etc/sway/config.d/* 00:00:00.043 [sway/commands.c:392] After replacement: include /etc/sway/config.d/* 00:00:00.043 [sway/config.c:379] Loading config from /etc/sway/config.d/50-systemd-user.conf 00:00:00.043 [sway/config.c:789] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment 00:00:00.043 [sway/config.c:789] Read line 2: # See FS#63021 00:00:00.043 [sway/config.c:789] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal. 00:00:00.043 [sway/config.c:789] Read line 4: 00:00:00.043 [sway/config.c:789] Read line 5: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/commands.c:372] Config command: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/commands.c:392] After replacement: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/config.c:833] Deferring command `exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK' 00:00:00.043 [sway/config.c:789] Read line 7: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/commands.c:372] Config command: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/commands.c:392] After replacement: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.043 [sway/config.c:833] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK' 00:00:00.043 [sway/server.c:198] Initializing Xwayland (lazy=1) 00:00:00.043 [sway/server.c:221] Starting backend on wayland display 'wayland-0' 00:00:00.043 [DEBUG] [backend/libinput/backend.c:70] Initializing libinput 00:00:00.185 [DEBUG] [backend/libinput/events.c:94] Added Power Button [0:1] 00:00:00.185 [sway/input/input-manager.c:234] adding device: '0:1:Power_Button' 00:00:00.185 [sway/input/input-manager.c:184] no fallback seat config - creating default 00:00:00.185 [sway/config/seat.c:65] Adding non-wildcard seat config 00:00:00.185 [sway/config/seat.c:82] Config stored for seat seat0 00:00:00.185 [sway/input/input-manager.c:585] applying seat config for seat seat0 00:00:00.185 [sway/input/seat.c:872] adding device 0:1:Power_Button to seat seat0 00:00:00.191 [sway/input/keyboard.c:877] Created keyboard group 0x557c860c4900 00:00:00.191 [sway/input/keyboard.c:900] Adding keyboard 0:1:Power_Button to group 0x557c860c4900 00:00:00.201 [DEBUG] [backend/libinput/events.c:94] Added Power Button [0:1] 00:00:00.201 [sway/input/input-manager.c:234] adding device: '0:1:Power_Button' 00:00:00.201 [sway/input/seat.c:872] adding device 0:1:Power_Button to seat seat0 00:00:00.207 [sway/input/keyboard.c:852] Adding keyboard 0:1:Power_Button to group 0x557c860c4900 00:00:00.210 [DEBUG] [backend/libinput/events.c:94] Added Logitech G413 Carbon Mechanical Gaming Keyboard [1133:49978] 00:00:00.210 [sway/input/input-manager.c:234] adding device: '1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard' 00:00:00.210 [sway/input/seat.c:872] adding device 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard to seat seat0 00:00:00.216 [sway/input/keyboard.c:852] Adding keyboard 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard to group 0x557c860c4900 00:00:00.219 [DEBUG] [backend/libinput/events.c:94] Added Logitech G413 Carbon Mechanical Gaming Keyboard [1133:49978] 00:00:00.219 [sway/input/input-manager.c:234] adding device: '1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard' 00:00:00.219 [sway/input/seat.c:872] adding device 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard to seat seat0 00:00:00.225 [sway/input/keyboard.c:852] Adding keyboard 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard to group 0x557c860c4900 00:00:00.227 [DEBUG] [backend/libinput/events.c:94] Added Logitech G413 Carbon Mechanical Gaming Keyboard Consumer Control [1133:49978] 00:00:00.227 [sway/input/input-manager.c:234] adding device: '1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard_Consumer_Control' 00:00:00.227 [sway/input/seat.c:872] adding device 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard_Consumer_Control to seat seat0 00:00:00.232 [sway/input/keyboard.c:852] Adding keyboard 1133:49978:Logitech_G413_Carbon_Mechanical_Gaming_Keyboard_Consumer_Control to group 0x557c860c4900 00:00:00.234 [DEBUG] [backend/libinput/events.c:94] Added PixArt HP USB Optical Mouse [1121:20109] 00:00:00.234 [sway/input/input-manager.c:234] adding device: '1121:20109:PixArt_HP_USB_Optical_Mouse' 00:00:00.234 [sway/input/seat.c:872] adding device 1121:20109:PixArt_HP_USB_Optical_Mouse to seat seat0 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors: 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] openhand (1 images) 24x24+11,7 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3 00:00:00.244 [DEBUG] [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11 00:00:00.244 [DEBUG] [backend/libinput/events.c:94] Added HP WMI hotkeys [0:0] 00:00:00.244 [sway/input/input-manager.c:234] adding device: '0:0:HP_WMI_hotkeys' 00:00:00.244 [sway/input/seat.c:872] adding device 0:0:HP_WMI_hotkeys to seat seat0 00:00:00.247 [sway/input/keyboard.c:852] Adding keyboard 0:0:HP_WMI_hotkeys to group 0x557c860c4900 00:00:00.248 [DEBUG] [backend/libinput/backend.c:116] libinput successfully initialized 00:00:00.248 [INFO] [backend/drm/drm.c:1256] Scanning DRM connectors 00:00:00.321 [INFO] [backend/drm/drm.c:1315] Found connector 'HDMI-A-1' 00:00:00.321 [INFO] [backend/drm/drm.c:1351] 'HDMI-A-1' connected 00:00:00.321 [DEBUG] [backend/drm/drm.c:1352] Current CRTC: 54 00:00:00.321 [INFO] [backend/drm/drm.c:1357] Physical size: 820x350 00:00:00.321 [INFO] [backend/drm/drm.c:1375] Detected modes: 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 2560x1080@59978 (preferred) 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 2560x1080@59976 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1920x1080@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1920x1080@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1920x1080@59940 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1920x1080@50000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1680x1050@59883 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x1024@75025 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x1024@60020 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1440x900@59901 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x960@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x800@59910 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1152x864@75000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x720@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x720@59940 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1280x720@50000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1024x768@75029 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1024x768@70069 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 1024x768@60004 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 832x624@74551 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 800x600@75000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 800x600@72188 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 800x600@60317 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 800x600@56250 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 720x576@50000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 720x480@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 720x480@59940 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 640x480@75000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 640x480@72809 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 640x480@66667 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 640x480@60000 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 640x480@59940 00:00:00.321 [INFO] [backend/drm/drm.c:1397] 720x400@70082 00:00:00.393 [INFO] [backend/drm/drm.c:1315] Found connector 'DP-1' 00:00:00.394 [INFO] [backend/drm/drm.c:1315] Found connector 'DVI-D-1' 00:00:00.394 [DEBUG] [backend/drm/drm.c:1088] Reallocating CRTCs 00:00:00.394 [DEBUG] [backend/drm/drm.c:1099] State before reallocation: 00:00:00.394 [DEBUG] [backend/drm/drm.c:1105] 'HDMI-A-1' crtc=0 state=1 desired_enabled=1 00:00:00.394 [DEBUG] [backend/drm/drm.c:1105] 'DP-1' crtc=-1 state=0 desired_enabled=0 00:00:00.394 [DEBUG] [backend/drm/drm.c:1105] 'DVI-D-1' crtc=-1 state=0 desired_enabled=0 00:00:00.394 [DEBUG] [backend/drm/drm.c:1157] State after reallocation: 00:00:00.394 [DEBUG] [backend/drm/drm.c:1164] 'HDMI-A-1' crtc=0 state=1 desired_enabled=1 00:00:00.394 [DEBUG] [backend/drm/drm.c:1164] 'DP-1' crtc=-1 state=0 desired_enabled=0 00:00:00.394 [DEBUG] [backend/drm/drm.c:1164] 'DVI-D-1' crtc=-1 state=0 desired_enabled=0 00:00:00.394 [INFO] [backend/drm/drm.c:1463] Requesting modeset for 'HDMI-A-1' 00:00:00.394 [sway/desktop/output.c:915] New output 0x557c862f3370: HDMI-A-1 00:00:00.394 [sway/config/output.c:348] Turning on output HDMI-A-1 00:00:00.394 [sway/config/output.c:352] Set HDMI-A-1 mode to 2560x1080 (-1.000000 Hz) 00:00:00.394 [sway/config/output.c:266] Assigning configured mode to HDMI-A-1 00:00:00.394 [sway/config/output.c:379] Auto-detected output scale: 1.000000 00:00:00.394 [sway/config/output.c:409] Committing output HDMI-A-1 00:00:00.394 [INFO] [backend/drm/drm.c:811] Modesetting 'HDMI-A-1' with '2560x1080@59978mHz' 00:00:00.394 [DEBUG] [backend/drm/drm.c:693] Initializing renderer on connector 'HDMI-A-1' 00:00:00.394 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 9, inst: 11, bytes: 176, cached: 701 00:00:00.394 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 13, inst: 23, bytes: 368, cached: 1265 00:00:00.401 [sway/config/output.c:455] Set HDMI-A-1 position to 0, 0 00:00:00.401 [sway/tree/workspace.c:283] Workspace: Generating new workspace name for output HDMI-A-1 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 1' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '1' 00:00:00.401 [sway/tree/workspace.c:274] Workspace: Found free name 1 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 2' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '2' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 3' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '3' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 4' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '4' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 5' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '5' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 6' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '6' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 7' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '7' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 8' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '8' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 9' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '9' 00:00:00.401 [sway/tree/workspace.c:218] Got valid workspace command for target: 'number 10' 00:00:00.401 [sway/tree/workspace.c:245] Isolated name from workspace number: '10' 00:00:00.401 [sway/tree/output.c:127] Creating default workspace 1 00:00:00.401 [sway/tree/workspace.c:63] Adding workspace 1 for output HDMI-A-1 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors: 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4 00:00:00.409 [DEBUG] [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] openhand (1 images) 24x24+11,7 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3 00:00:00.410 [DEBUG] [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11 00:00:00.410 [sway/desktop/layer_shell.c:189] Usable area changed, rearranging output 00:00:00.410 [sway/tree/arrange.c:263] Usable area for ws: 2560x1080@0,0 00:00:00.410 [sway/tree/arrange.c:293] Arranging workspace '1' at 30.000000, 30.000000 00:00:00.410 [sway/tree/arrange.c:263] Usable area for ws: 2560x1080@0,0 00:00:00.410 [sway/tree/arrange.c:293] Arranging workspace '1' at 30.000000, 30.000000 00:00:00.432 [sway/desktop/transaction.c:414] Transaction 0x557c86101ae0 committing with 2 instructions 00:00:00.432 [sway/desktop/transaction.c:281] Applying transaction 0x557c86101ae0 00:00:00.433 [INFO] [backend/headless/backend.c:21] Starting headless backend 00:00:00.433 [sway/config/bar.c:262] Invoking swaybar for bar id 'bar-0' 00:00:00.435 [sway/config/bar.c:254] Spawned swaybar bar-0 00:00:00.435 [sway/config.c:638] Running deferred commands 00:00:00.435 [sway/commands.c:255] Handling command 'exec swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000'' 00:00:00.435 [sway/commands/exec_always.c:46] Executing swayidle -w timeout 1800 'swaylock -f -c 000000' timeout 2000 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000' 00:00:00.436 [sway/commands/exec_always.c:87] Child process created with pid 32380 00:00:00.436 [sway/tree/root.c:290] Recording workspace for process 32380 00:00:00.436 [sway/commands.c:255] Handling command 'exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK' 00:00:00.436 [sway/commands/exec_always.c:46] Executing systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.438 [sway/commands/exec_always.c:87] Child process created with pid 32382 00:00:00.438 [sway/tree/root.c:290] Recording workspace for process 32382 00:00:00.438 [sway/commands.c:255] Handling command 'exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK' 00:00:00.438 [sway/commands/exec_always.c:46] Executing hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK 00:00:00.439 [sway/commands/exec_always.c:87] Child process created with pid 32384 00:00:00.439 [sway/tree/root.c:290] Recording workspace for process 32384 00:00:00.439 [sway/server.c:232] Running compositor on wayland display 'wayland-0' 00:00:00.441 [sway/ipc-server.c:153] Event on IPC listening socket 00:00:00.441 [sway/ipc-server.c:199] New client: fd 37 00:00:00.441 [sway/ipc-server.c:153] Event on IPC listening socket 00:00:00.441 [sway/ipc-server.c:199] New client: fd 42 00:00:00.441 [sway/ipc-server.c:219] Client 37 readable 00:00:00.441 [sway/ipc-server.c:960] Added IPC reply of type 0x6 to client 37 queue: { "id": "bar-0", "mode": "dock", "hidden_state": "hide", "position": "top", "status_command": "while date +'%R %d-%b-%y'; 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, "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 } 00:00:00.441 [sway/ipc-server.c:536] Client 37 writable 2021-03-26 16:50:11 - [swaybg-1.0/main.c:299] Found config * for output HDMI-A-1 (Acer Technologies CB351C T6DAA0018501) 00:00:00.441 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c8633ddb0 (res 0x557c86340700) 00:00:00.441 [DEBUG] [types/wlr_layer_shell_v1.c:458] new layer_surface 0x557c86457860 (res 0x557c86340790) 00:00:00.441 [sway/desktop/layer_shell.c:513] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0 00:00:00.441 [sway/ipc-server.c:219] Client 42 readable 00:00:00.441 [sway/ipc-server.c:960] Added IPC reply of type 0x2 to client 42 queue: {"success": true} 00:00:00.441 [sway/ipc-server.c:536] Client 42 writable 00:00:00.457 [sway/ipc-server.c:219] Client 37 readable 00:00:00.457 [sway/ipc-server.c:960] Added IPC reply of type 0x1 to client 37 queue: [ { "id": 4, "name": "1", "rect": { "x": 30, "y": 30, "width": 2500, "height": 1020 }, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "splith", "orientation": "horizontal", "percent": null, "window_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 0, "height": 0 }, "window": null, "urgent": false, "marks": [ ], "fullscreen_mode": 1, "nodes": [ ], "floating_nodes": [ ], "sticky": false, "num": 1, "output": "HDMI-A-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ] 00:00:00.457 [sway/ipc-server.c:536] Client 37 writable 00:00:00.459 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c86449120 (res 0x557c86368770) 00:00:00.459 [DEBUG] [types/wlr_layer_shell_v1.c:458] new layer_surface 0x557c8644adb0 (res 0x557c8644af10) 00:00:00.459 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 1 anchor 1 size 0x20 margin 0,0,0,0 00:00:00.459 [sway/desktop/layer_shell.c:189] Usable area changed, rearranging output 00:00:00.459 [sway/tree/arrange.c:263] Usable area for ws: 2560x1060@0,20 00:00:00.459 [sway/tree/arrange.c:293] Arranging workspace '1' at 30.000000, 50.000000 00:00:00.459 [sway/desktop/transaction.c:414] Transaction 0x557c8620e600 committing with 1 instructions 00:00:00.459 [sway/desktop/transaction.c:281] Applying transaction 0x557c8620e600 00:00:00.459 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c8633e5a0 (res 0x557c86448620) Got sleep lock: 11 00:00:02.459 [DEBUG] [GLES2] type: 1, local: 0, shared: 0, gpr: 8, inst: 5, bytes: 80, cached: 597 00:00:02.459 [DEBUG] [GLES2] type: 0, local: 0, shared: 0, gpr: 8, inst: 5, bytes: 80, cached: 629 00:00:02.539 [sway/commands/bind.c:616] running command for binding: exec alacritty 00:00:02.539 [sway/commands.c:255] Handling command 'exec alacritty' 00:00:02.539 [sway/commands/exec_always.c:46] Executing alacritty 00:00:02.541 [sway/commands/exec_always.c:87] Child process created with pid 32398 00:00:02.541 [sway/tree/root.c:290] Recording workspace for process 32398 00:00:02.560 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c863780f0 (res 0x557c86378060) 00:00:02.560 [DEBUG] [types/wlr_relative_pointer_v1.c:145] relative_pointer_v1 0x557c86378530 created for client 0x557c8636e870 00:00:02.560 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c86368010 (res 0x557c863786d0) 00:00:02.560 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:465] new xdg_surface 0x557c8636a930 (res 0x557c8636aa80) 00:00:02.560 [sway/desktop/xdg_shell.c:510] New xdg_shell toplevel title='(null)' app_id='(null)' 00:00:02.560 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c8636afb0 (res 0x557c8636c560) 00:00:02.560 [DEBUG] [types/wlr_xdg_decoration_v1.c:210] new xdg_toplevel_decoration 0x557c8636c680 (res 0x557c8636c760) 00:00:02.623 [sway/tree/root.c:249] Looking up workspace for pid 32398 00:00:02.623 [sway/tree/root.c:256] found pid_workspace for pid 32398, workspace 1 00:00:02.635 [sway/tree/arrange.c:263] Usable area for ws: 2560x1060@0,20 00:00:02.635 [sway/tree/arrange.c:293] Arranging workspace '1' at 30.000000, 50.000000 00:00:02.635 [sway/tree/arrange.c:77] Arranging 0x7ffc736eba60 horizontally 00:00:02.635 [sway/tree/arrange.c:263] Usable area for ws: 2560x1060@0,20 00:00:02.635 [sway/tree/arrange.c:293] Arranging workspace '1' at 30.000000, 50.000000 00:00:02.635 [sway/tree/arrange.c:77] Arranging 0x7ffc736ebae0 horizontally 00:00:02.635 [sway/desktop/transaction.c:414] Transaction 0x557c8624bf00 committing with 3 instructions 00:00:02.639 [sway/desktop/transaction.c:492] Transaction 0x557c8624bf00 is ready 00:00:02.639 [sway/desktop/transaction.c:281] Applying transaction 0x557c8624bf00 00:00:02.639 [sway/tree/container.c:1167] Container 0x557c86340010 entered output 0x557c862fa990 00:00:02.674 [INFO] [xwayland/server.c:92] WAYLAND_SOCKET=24 Xwayland :0 -rootless -terminate -listen 21 -listen 23 -wm 49 (WW) Option "-listen" for file descriptors is deprecated Please use "-listenfd" instead. (WW) Option "-listen" for file descriptors is deprecated Please use "-listenfd" instead. glamor: No eglstream capable devices found 00:00:02.766 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x557c865369b0 (res 0x557c86536d60) 00:00:02.767 [DEBUG] [xwayland/server.c:343] sent SIGUSR1 to process 32369 (EE) failed to read Wayland events: Connection reset by peer 00:00:02.331 [common/ipc-client.c:88] Unable to receive IPC response date: write error: Broken pipe ```
emersion commented 3 years ago

Duplicate of https://github.com/swaywm/sway/issues/6032

00:00:02.767 [DEBUG] [xwayland/server.c:343] sent SIGUSR1 to process 32369
trentonknight commented 3 years ago

@emersion Wow your good. Thank you. I never would have found that.