Skip to content

Instantly share code, notes, and snippets.

@omega16
Last active July 25, 2020 23:29
Show Gist options
  • Save omega16/63f6aa951601fd29f8ded22b6c013682 to your computer and use it in GitHub Desktop.
Save omega16/63f6aa951601fd29f8ded22b6c013682 to your computer and use it in GitHub Desktop.
Sway_freezes
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod4
# Home row direction keys, like vim
set $left h
set $down j
set $up k
set $right l
# Your preferred terminal emulator
set $term kitty
# Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.
set $menu bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output HDMI-A-1 pos 0 0 res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
output DP-3 pos 1360 0 res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
focus output HDMI-A-1
#
# Example configuration:
#
# output HDMI-A-1 resolution 1920x1080 position 1920,0
#
# You can get the names of your outputs by running: swaymsg -t get_outputs
### Idle configuration
#
# Example configuration:
#
# exec swayidle -w \
# timeout 300 'swaylock -f -c 000000' \
# timeout 600 'swaymsg "output * dpms off"' \
# resume 'swaymsg "output * dpms on"' \
# before-sleep 'swaylock -f -c 000000'
#
# This will lock your screen after 300 seconds of inactivity, then turn off
# your displays after another 300 seconds, and turn your screens back on when
# resumed. It will also lock your screen before your computer goes to sleep.
### Input configuration
#
# Example configuration:
#
# input "2:14:SynPS/2_Synaptics_TouchPad" {
# dwt enabled
# tap enabled
# natural_scroll enabled
# middle_emulation enabled
# }
#
# You can get the names of your inputs by running: swaymsg -t get_inputs
# Read `man 5 sway-input` for more information about this section.
input type:keyboard {
xkb_file ~/.config/xkb/new.xkb
#xkb_layout es
#xkb_options shift:both_capslock_cancel
#xkb_options caps:super
}
bindsym $mod+m exec imv ~/.config/xkb/keyboard/propuesta1.png
### Key bindings
#
# Basics:
#
# Start a terminal
bindsym $mod+T exec $term
# Kill focused window
bindsym $mod+s kill
# Start your launcher
bindsym $mod+d exec $menu
# Drag floating windows by holding down $mod and left mouse button.
# Resize them with right mouse button + $mod.
# Despite the name, also works for non-floating windows.
# Change normal to inverse to use left mouse button for resizing and right
# mouse button for dragging.
floating_modifier $mod normal
# Reload the configuration file
bindsym $mod+Shift+r reload
# Exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
bindsym $mod+Shift+w exec "shutdown -P now"
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
#
# Moving around:
#
# Move your focus around
bindsym $mod+$left focus left
bindsym $mod+$down focus down
bindsym $mod+$up focus up
bindsym $mod+$right focus right
# Or use $mod+[up|down|left|right]
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# Move the focused window with the same, but add Shift
bindsym $mod+u move left
bindsym $mod+i move down
bindsym $mod+o move up
bindsym $mod+p move right
# Ditto, with arrow keys
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
#
# Workspaces:
#
# Switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
# Layout stuff:
#
# You can "split" the current object of your focus with
# $mod+b or $mod+v, for horizontal and vertical splits
# respectively.
bindsym $mod+b splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+q layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# Move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
hidden_state hide
mode hide
wrap_scroll yes
# When the status_command prints a new line to stdout, swaybar updates.
# The default just shows the current date and time.
status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
#status_command ~/progra/bin/sway-bar.sh
#status_command while sleep 1; do amixer -c 0 -M -D pulse get Master | grep -E -o '[0-9]+%' | xargs printf '%s';done
#"AMIXER -c 0 -M -D pulse get Master | grep -E -o '[0-9]+%' | xargs printf '%s %s'"
colors {
statusline #ffffff
background #323232aa
inactive_workspace #32323200 #32323200 #5c5c5c
}
}
include /etc/sway/config.d/*
PID: 564 (sway)
UID: 1000 (omega16)
GID: 1000 (omega16)
Signal: 11 (SEGV)
Timestamp: Mon 2020-07-06 22:55:16 CDT (2 weeks 4 days ago)
Command Line: sway
Executable: /usr/bin/sway
Control Group: /user.slice/user-1000.slice/session-2.scope
Unit: session-2.scope
Slice: user-1000.slice
Session: 2
Owner UID: 1000 (omega16)
Boot ID: 8c86487fd96b43969683802d88a3f2aa
Machine ID: a60f9501a6b948a895f88163ea0f0e29
Hostname: Yuki.N.PC
Storage: /var/lib/systemd/coredump/core.sway.1000.8c86487fd96b43969683802d88a3f2aa.564.1594094116000000000000.lz4 (inaccessible)
Message: Process 564 (sway) of user 1000 dumped core.
Stack trace of thread 564:
#0 0x00007efff6e52dea __GI___strlen_sse2 (libc.so.6 + 0x9edea)
#1 0x00007efff6e43233 __strdup (libc.so.6 + 0x8f233)
#2 0x000055764468f442 n/a (sway + 0x4f442)
#3 0x0000557644671b6f n/a (sway + 0x31b6f)
#4 0x0000557644674961 n/a (sway + 0x34961)
#5 0x00007efff67be1dd wl_event_loop_dispatch (libwayland-server.so.0 + 0xb1dd)
#6 0x00007efff67bc4e7 wl_display_run (libwayland-server.so.0 + 0x94e7)
#7 0x000055764464f5ff n/a (sway + 0xf5ff)
#8 0x00007efff6ddb002 __libc_start_main (libc.so.6 + 0x27002)
#9 0x000055764464f94e n/a (sway + 0xf94e)
Stack trace of thread 569:
#0 0x00007efff667de32 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xfe32)
#1 0x00007efff545646c n/a (i965_dri.so + 0x51e46c)
#2 0x00007efff5455788 n/a (i965_dri.so + 0x51d788)
#3 0x00007efff6677422 start_thread (libpthread.so.0 + 0x9422)
#4 0x00007efff6eb3bf3 __clone (libc.so.6 + 0xffbf3)
Stack trace of thread 571:
#0 0x00007efff667de32 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xfe32)
#1 0x00007efff545646c n/a (i965_dri.so + 0x51e46c)
#2 0x00007efff5455788 n/a (i965_dri.so + 0x51d788)
#3 0x00007efff6677422 start_thread (libpthread.so.0 + 0x9422)
#4 0x00007efff6eb3bf3 __clone (libc.so.6 + 0xffbf3)
Stack trace of thread 572:
#0 0x00007efff667de32 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xfe32)
#1 0x00007efff545646c n/a (i965_dri.so + 0x51e46c)
#2 0x00007efff5455788 n/a (i965_dri.so + 0x51d788)
#3 0x00007efff6677422 start_thread (libpthread.so.0 + 0x9422)
#4 0x00007efff6eb3bf3 __clone (libc.so.6 + 0xffbf3)
Stack trace of thread 570:
#0 0x00007efff667de32 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xfe32)
#1 0x00007efff545646c n/a (i965_dri.so + 0x51e46c)
#2 0x00007efff5455788 n/a (i965_dri.so + 0x51d788)
#3 0x00007efff6677422 start_thread (libpthread.so.0 + 0x9422)
#4 0x00007efff6eb3bf3 __clone (libc.so.6 + 0xffbf3)
File "/var/lib/systemd/coredump/core.sway.1000.8c86487fd96b43969683802d88a3f2aa.564.1594094116000000000000.lz4" is not readable: No existe el fichero o el directorio
00:00:00.000 [sway/main.c:326] Sway version v1.5
00:00:00.027 [sway/main.c:153] Linux Yuki.N.PC 5.4.53-1-lts #1 SMP Wed, 22 Jul 2020 20:16:09 +0000 x86_64 GNU/Linux
00:00:00.028 [sway/main.c:169] Contents of /etc/lsb-release:
00:00:00.028 [sway/main.c:153] LSB_VERSION=1.4
00:00:00.028 [sway/main.c:153] DISTRIB_ID=Arch
00:00:00.028 [sway/main.c:153] DISTRIB_RELEASE=rolling
00:00:00.028 [sway/main.c:153] DISTRIB_DESCRIPTION="Arch Linux"
00:00:00.028 [sway/main.c:169] Contents of /etc/os-release:
00:00:00.038 [sway/main.c:153] NAME="Arch Linux"
00:00:00.039 [sway/main.c:153] PRETTY_NAME="Arch Linux"
00:00:00.039 [sway/main.c:153] ID=arch
00:00:00.039 [sway/main.c:153] BUILD_ID=rolling
00:00:00.039 [sway/main.c:153] ANSI_COLOR="38;2;23;147;209"
00:00:00.039 [sway/main.c:153] HOME_URL="https://www.archlinux.org/"
00:00:00.039 [sway/main.c:153] DOCUMENTATION_URL="https://wiki.archlinux.org/"
00:00:00.039 [sway/main.c:153] SUPPORT_URL="https://bbs.archlinux.org/"
00:00:00.039 [sway/main.c:153] BUG_REPORT_URL="https://bugs.archlinux.org/"
00:00:00.040 [sway/main.c:153] LOGO=archlinux
00:00:00.040 [sway/main.c:141] LD_LIBRARY_PATH=(null)
00:00:00.040 [sway/main.c:141] LD_PRELOAD=(null)
00:00:00.040 [sway/main.c:141] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/smlnj/bin
00:00:00.040 [sway/main.c:141] SWAYSOCK=(null)
00:00:00.042 [sway/server.c:43] Preparing Wayland server initialization
00:00:00.079 [INFO] [backend/session/logind.c:822] Successfully loaded logind session
00:00:00.093 [INFO] [backend/backend.c:157] Found 1 GPUs
00:00:00.093 [INFO] [backend/drm/backend.c:138] Initializing DRM backend for /dev/dri/card0 (i915)
00:00:00.093 [DEBUG] [backend/drm/drm.c:70] Using atomic DRM interface
00:00:00.093 [INFO] [backend/drm/drm.c:255] Found 3 DRM CRTCs
00:00:00.093 [INFO] [backend/drm/drm.c:176] Found 12 DRM planes
00:00:00.185 [INFO] [render/egl.c:297] Using EGL 1.4
00:00:00.185 [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.185 [INFO] [render/egl.c:299] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_buffer_age EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_IMG_context_priority 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.185 [INFO] [render/egl.c:300] EGL vendor: Mesa Project
00:00:00.196 [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.249 [INFO] [render/egl.c:338] Failed to obtain a high priority context
00:00:00.275 [INFO] [render/gles2/renderer.c:693] Using OpenGL ES 3.1 Mesa 20.1.3
00:00:00.275 [INFO] [render/gles2/renderer.c:694] GL vendor: Intel Open Source Technology Center
00:00:00.275 [INFO] [render/gles2/renderer.c:695] GL renderer: Mesa DRI Intel(R) HD Graphics 400 (BSW)
00:00:00.276 [INFO] [render/gles2/renderer.c:696] 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_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_INTEL_performance_query 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_EXT_shader_samples_identical GL_KHR_no_error 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_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_texture_compression_bptc GL_KHR_parallel_shader_compile GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_sRGB_R8 GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod
00:00:00.641 [sway/main.c:373] Starting sway version v1.5
00:00:00.641 [sway/server.c:56] Initializing Wayland server
00:00:00.641 [DEBUG] [types/wlr_idle.c:247] idle manager created
00:00:00.641 [INFO] [backend/noop/backend.c:51] Creating noop backend
00:00:00.642 [INFO] [backend/headless/backend.c:171] Creating headless backend
00:00:00.695 [sway/config.c:379] Loading config from /home/omega16/.config/sway/config
00:00:00.710 [sway/config.c:789] Read line 1: # Default config for sway
00:00:00.710 [sway/config.c:789] Read line 2: #
00:00:00.710 [sway/config.c:789] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking.
00:00:00.710 [sway/config.c:789] Read line 4: #
00:00:00.710 [sway/config.c:789] Read line 5: # Read `man 5 sway` for a complete reference.
00:00:00.711 [sway/config.c:789] Read line 6:
00:00:00.711 [sway/config.c:789] Read line 7: ### Variables
00:00:00.711 [sway/config.c:789] Read line 8: #
00:00:00.711 [sway/config.c:789] Read line 9: # Logo key. Use Mod1 for Alt.
00:00:00.711 [sway/config.c:789] Read line 10: set $mod Mod4
00:00:00.711 [sway/commands.c:372] Config command: set $mod Mod4
00:00:00.711 [sway/commands.c:392] After replacement: set $mod Mod4
00:00:00.725 [sway/config.c:789] Read line 11: # Home row direction keys, like vim
00:00:00.725 [sway/config.c:789] Read line 12: set $left h
00:00:00.725 [sway/commands.c:372] Config command: set $left h
00:00:00.725 [sway/commands.c:392] After replacement: set $left h
00:00:00.725 [sway/config.c:789] Read line 13: set $down j
00:00:00.726 [sway/commands.c:372] Config command: set $down j
00:00:00.726 [sway/commands.c:392] After replacement: set $down j
00:00:00.726 [sway/config.c:789] Read line 14: set $up k
00:00:00.726 [sway/commands.c:372] Config command: set $up k
00:00:00.726 [sway/commands.c:392] After replacement: set $up k
00:00:00.726 [sway/config.c:789] Read line 15: set $right l
00:00:00.726 [sway/commands.c:372] Config command: set $right l
00:00:00.726 [sway/commands.c:392] After replacement: set $right l
00:00:00.726 [sway/config.c:789] Read line 16: # Your preferred terminal emulator
00:00:00.727 [sway/config.c:789] Read line 17: set $term kitty
00:00:00.727 [sway/commands.c:372] Config command: set $term kitty
00:00:00.727 [sway/commands.c:392] After replacement: set $term kitty
00:00:00.727 [sway/config.c:789] Read line 18: # Your preferred application launcher
00:00:00.727 [sway/config.c:789] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened
00:00:00.727 [sway/config.c:789] Read line 20: # on the original workspace that the command was run on.
00:00:00.727 [sway/config.c:789] Read line 21: set $menu bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:00.727 [sway/commands.c:372] Config command: set $menu bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:00.727 [sway/commands.c:392] After replacement: set $menu bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:00.728 [sway/config.c:789] Read line 22:
00:00:00.728 [sway/config.c:789] Read line 23: ### Output configuration
00:00:00.728 [sway/config.c:789] Read line 24: #
00:00:00.728 [sway/config.c:789] Read line 25: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
00:00:00.728 [sway/config.c:789] Read line 26: output HDMI-A-1 pos 0 0 res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.728 [sway/commands.c:372] Config command: output HDMI-A-1 pos 0 0 res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.728 [sway/commands.c:392] After replacement: output HDMI-A-1 pos 0 0 res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.728 [sway/commands.c:423] Subcommand: pos 0 0 res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.729 [sway/commands.c:423] Subcommand: res 1360x768 bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.729 [sway/commands.c:423] Subcommand: bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill
00:00:00.750 [sway/config/output.c:210] Adding non-wildcard output config
00:00:00.750 [sway/config/output.c:227] Config stored for output HDMI-A-1 (enabled: -1) (1360x768@-1.000000Hz position 0,0 scale -1.000000 subpixel unknown transform -1) (bg /home/omega16/Desktop/nagato-yuki-using-mouse.jpg fill) (dpms 0) (max render time: -1)
00:00:00.750 [sway/config/output.c:789] spawn_swaybg cmd[0] = swaybg
00:00:00.750 [sway/config/output.c:789] spawn_swaybg cmd[1] = -o
00:00:00.750 [sway/config/output.c:789] spawn_swaybg cmd[2] = HDMI-A-1
00:00:00.751 [sway/config/output.c:789] spawn_swaybg cmd[3] = -i
00:00:00.751 [sway/config/output.c:789] spawn_swaybg cmd[4] = /home/omega16/Desktop/nagato-yuki-using-mouse.jpg
00:00:00.751 [sway/config/output.c:789] spawn_swaybg cmd[5] = -m
00:00:00.751 [sway/config/output.c:789] spawn_swaybg cmd[6] = fill
00:00:00.763 [sway/config.c:789] Read line 27: output DP-3 pos 1360 0 res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.763 [sway/commands.c:372] Config command: output DP-3 pos 1360 0 res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.763 [sway/commands.c:392] After replacement: output DP-3 pos 1360 0 res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.764 [sway/commands.c:423] Subcommand: pos 1360 0 res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.764 [sway/commands.c:423] Subcommand: res 1360x768 bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.764 [sway/commands.c:423] Subcommand: bg /home/omega16/Desktop/nagato3.jpg fill
00:00:00.764 [sway/config/output.c:210] Adding non-wildcard output config
00:00:00.764 [sway/config/output.c:227] Config stored for output DP-3 (enabled: -1) (1360x768@-1.000000Hz position 1360,0 scale -1.000000 subpixel unknown transform -1) (bg /home/omega16/Desktop/nagato3.jpg fill) (dpms 0) (max render time: -1)
00:00:00.764 [sway/config/output.c:789] spawn_swaybg cmd[0] = swaybg
00:00:00.764 [sway/config/output.c:789] spawn_swaybg cmd[1] = -o
00:00:00.764 [sway/config/output.c:789] spawn_swaybg cmd[2] = HDMI-A-1
00:00:00.764 [sway/config/output.c:789] spawn_swaybg cmd[3] = -i
00:00:00.764 [sway/config/output.c:789] spawn_swaybg cmd[4] = /home/omega16/Desktop/nagato-yuki-using-mouse.jpg
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[5] = -m
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[6] = fill
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[7] = -o
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[8] = DP-3
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[9] = -i
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[10] = /home/omega16/Desktop/nagato3.jpg
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[11] = -m
00:00:00.765 [sway/config/output.c:789] spawn_swaybg cmd[12] = fill
00:00:00.772 [sway/config.c:789] Read line 28: focus output HDMI-A-1
00:00:00.772 [sway/commands.c:372] Config command: focus output HDMI-A-1
00:00:00.772 [sway/commands.c:392] After replacement: focus output HDMI-A-1
00:00:00.772 [sway/config.c:833] Deferring command `focus output HDMI-A-1'
00:00:00.772 [sway/config.c:789] Read line 29: #
00:00:00.773 [sway/config.c:789] Read line 30: # Example configuration:
00:00:00.773 [sway/config.c:789] Read line 31: #
00:00:00.773 [sway/config.c:789] Read line 32: # output HDMI-A-1 resolution 1920x1080 position 1920,0
00:00:00.773 [sway/config.c:789] Read line 33: #
00:00:00.773 [sway/config.c:789] Read line 34: # You can get the names of your outputs by running: swaymsg -t get_outputs
00:00:00.773 [sway/config.c:789] Read line 35:
00:00:00.773 [sway/config.c:789] Read line 36: ### Idle configuration
00:00:00.773 [sway/config.c:789] Read line 37: #
00:00:00.773 [sway/config.c:789] Read line 38: # Example configuration:
00:00:00.773 [sway/config.c:789] Read line 39: #
00:00:00.773 [sway/config.c:789] Read line 40: # exec swayidle -w \
00:00:00.773 [sway/config.c:789] Read line 41: # timeout 300 'swaylock -f -c 000000' \
00:00:00.773 [sway/config.c:789] Read line 42: # timeout 600 'swaymsg "output * dpms off"' \
00:00:00.773 [sway/config.c:789] Read line 43: # resume 'swaymsg "output * dpms on"' \
00:00:00.773 [sway/config.c:789] Read line 44: # before-sleep 'swaylock -f -c 000000'
00:00:00.773 [sway/config.c:789] Read line 45: #
00:00:00.773 [sway/config.c:789] Read line 46: # This will lock your screen after 300 seconds of inactivity, then turn off
00:00:00.773 [sway/config.c:789] Read line 47: # your displays after another 300 seconds, and turn your screens back on when
00:00:00.773 [sway/config.c:789] Read line 48: # resumed. It will also lock your screen before your computer goes to sleep.
00:00:00.773 [sway/config.c:789] Read line 49:
00:00:00.773 [sway/config.c:789] Read line 50: ### Input configuration
00:00:00.774 [sway/config.c:789] Read line 51: #
00:00:00.774 [sway/config.c:789] Read line 52: # Example configuration:
00:00:00.774 [sway/config.c:789] Read line 53: #
00:00:00.774 [sway/config.c:789] Read line 54: # input "2:14:SynPS/2_Synaptics_TouchPad" {
00:00:00.774 [sway/config.c:789] Read line 55: # dwt enabled
00:00:00.774 [sway/config.c:789] Read line 56: # tap enabled
00:00:00.774 [sway/config.c:789] Read line 57: # natural_scroll enabled
00:00:00.774 [sway/config.c:789] Read line 58: # middle_emulation enabled
00:00:00.774 [sway/config.c:789] Read line 59: # }
00:00:00.774 [sway/config.c:789] Read line 60: #
00:00:00.774 [sway/config.c:789] Read line 61: # You can get the names of your inputs by running: swaymsg -t get_inputs
00:00:00.774 [sway/config.c:789] Read line 62: # Read `man 5 sway-input` for more information about this section.
00:00:00.774 [sway/config.c:789] Read line 63:
00:00:00.774 [sway/config.c:789] Read line 64: input type:keyboard {
00:00:00.774 [sway/config.c:843] Entering block 'input type:keyboard'
00:00:00.774 [sway/config.c:789] Read line 65: xkb_file ~/.config/xkb/new.xkb
00:00:00.774 [sway/commands.c:372] Config command: input type:keyboard xkb_file ~/.config/xkb/new.xkb
00:00:00.774 [sway/commands.c:392] After replacement: input type:keyboard xkb_file ~/.config/xkb/new.xkb
00:00:00.775 [sway/commands/input.c:53] entering input block: type:keyboard
00:00:00.775 [sway/config/input.c:15] new_input_config(type:keyboard)
00:00:00.775 [sway/commands.c:423] Subcommand: xkb_file ~/.config/xkb/new.xkb
00:00:00.775 [sway/commands/input/xkb_file.c:46] set-xkb_file for config: type:keyboard file: /home/omega16/.config/xkb/new.xkb
00:00:00.775 [sway/config/input.c:15] new_input_config(temp)
00:00:00.802 [sway/config/input.c:333] Config stored for input type:keyboard
00:00:00.802 [sway/config.c:789] Read line 66: #xkb_layout es
00:00:00.802 [sway/config.c:789] Read line 67: #xkb_options shift:both_capslock_cancel
00:00:00.802 [sway/config.c:789] Read line 68: #xkb_options caps:super
00:00:00.802 [sway/config.c:789] Read line 69: }
00:00:00.802 [sway/config.c:860] Exiting block 'input type:keyboard'
00:00:00.802 [sway/config.c:789] Read line 70: bindsym $mod+m exec imv ~/.config/xkb/keyboard/propuesta1.png
00:00:00.802 [sway/commands.c:372] Config command: bindsym $mod+m exec imv ~/.config/xkb/keyboard/propuesta1.png
00:00:00.802 [sway/commands.c:392] After replacement: bindsym Mod4+m exec imv ~/.config/xkb/keyboard/propuesta1.png
00:00:00.802 [sway/commands/bind.c:297] bindsym - Bound Mod4+m to command `exec imv ~/.config/xkb/keyboard/propuesta1.png` for device '*'
00:00:00.802 [sway/config.c:789] Read line 71: ### Key bindings
00:00:00.803 [sway/config.c:789] Read line 72: #
00:00:00.803 [sway/config.c:789] Read line 73: # Basics:
00:00:00.803 [sway/config.c:789] Read line 74: #
00:00:00.803 [sway/config.c:789] Read line 75: # Start a terminal
00:00:00.803 [sway/config.c:789] Read line 76: bindsym $mod+T exec $term
00:00:00.803 [sway/commands.c:372] Config command: bindsym $mod+T exec $term
00:00:00.803 [sway/commands.c:392] After replacement: bindsym Mod4+T exec kitty
00:00:00.803 [sway/commands/bind.c:297] bindsym - Bound Mod4+T to command `exec kitty` for device '*'
00:00:00.803 [sway/config.c:789] Read line 77:
00:00:00.803 [sway/config.c:789] Read line 78: # Kill focused window
00:00:00.803 [sway/config.c:789] Read line 79: bindsym $mod+s kill
00:00:00.803 [sway/commands.c:372] Config command: bindsym $mod+s kill
00:00:00.803 [sway/commands.c:392] After replacement: bindsym Mod4+s kill
00:00:00.803 [sway/commands/bind.c:297] bindsym - Bound Mod4+s to command `kill` for device '*'
00:00:00.803 [sway/config.c:789] Read line 80:
00:00:00.803 [sway/config.c:789] Read line 81: # Start your launcher
00:00:00.803 [sway/config.c:789] Read line 82: bindsym $mod+d exec $menu
00:00:00.803 [sway/commands.c:372] Config command: bindsym $mod+d exec $menu
00:00:00.803 [sway/commands.c:392] After replacement: bindsym Mod4+d exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:00.803 [sway/commands/bind.c:297] bindsym - Bound Mod4+d to command `exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --` for device '*'
00:00:00.803 [sway/config.c:789] Read line 83:
00:00:00.803 [sway/config.c:789] Read line 84: # Drag floating windows by holding down $mod and left mouse button.
00:00:00.803 [sway/config.c:789] Read line 85: # Resize them with right mouse button + $mod.
00:00:00.803 [sway/config.c:789] Read line 86: # Despite the name, also works for non-floating windows.
00:00:00.803 [sway/config.c:789] Read line 87: # Change normal to inverse to use left mouse button for resizing and right
00:00:00.803 [sway/config.c:789] Read line 88: # mouse button for dragging.
00:00:00.803 [sway/config.c:789] Read line 89: floating_modifier $mod normal
00:00:00.803 [sway/commands.c:372] Config command: floating_modifier $mod normal
00:00:00.803 [sway/commands.c:392] After replacement: floating_modifier Mod4 normal
00:00:00.804 [sway/config.c:789] Read line 90:
00:00:00.804 [sway/config.c:789] Read line 91: # Reload the configuration file
00:00:00.804 [sway/config.c:789] Read line 92: bindsym $mod+Shift+r reload
00:00:00.804 [sway/commands.c:372] Config command: bindsym $mod+Shift+r reload
00:00:00.804 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+r reload
00:00:00.804 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+r to command `reload` for device '*'
00:00:00.804 [sway/config.c:789] Read line 93:
00:00:00.804 [sway/config.c:789] Read line 94: # Exit sway (logs you out of your Wayland session)
00:00:00.804 [sway/config.c:789] Read line 95: 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.804 [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.804 [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.804 [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.804 [sway/config.c:789] Read line 96:
00:00:00.804 [sway/config.c:789] Read line 97: bindsym $mod+Shift+w exec "shutdown -P now"
00:00:00.812 [sway/commands.c:372] Config command: bindsym $mod+Shift+w exec "shutdown -P now"
00:00:00.812 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+w exec "shutdown -P now"
00:00:00.812 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+w to command `exec "shutdown -P now"` for device '*'
00:00:00.812 [sway/config.c:789] Read line 98:
00:00:00.812 [sway/config.c:789] Read line 99: bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
00:00:00.812 [sway/commands.c:372] Config command: bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
00:00:00.812 [sway/commands.c:392] After replacement: bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
00:00:00.812 [sway/commands/bind.c:297] bindsym - Bound XF86AudioRaiseVolume to command `exec pactl set-sink-volume @DEFAULT_SINK@ +5%` for device '*'
00:00:00.813 [sway/config.c:789] Read line 100: bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:00.813 [sway/commands.c:372] Config command: bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:00.813 [sway/commands.c:392] After replacement: bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:00.813 [sway/commands/bind.c:297] bindsym - Bound XF86AudioLowerVolume to command `exec pactl set-sink-volume @DEFAULT_SINK@ -5%` for device '*'
00:00:00.813 [sway/config.c:789] Read line 101: bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
00:00:00.813 [sway/commands.c:372] Config command: bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
00:00:00.813 [sway/commands.c:392] After replacement: bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
00:00:00.813 [sway/commands/bind.c:297] bindsym - Bound XF86AudioMute to command `exec pactl set-sink-mute @DEFAULT_SINK@ toggle` for device '*'
00:00:00.813 [sway/config.c:789] Read line 102:
00:00:00.813 [sway/config.c:789] Read line 103:
00:00:00.813 [sway/config.c:789] Read line 104: #
00:00:00.813 [sway/config.c:789] Read line 105: # Moving around:
00:00:00.813 [sway/config.c:789] Read line 106: #
00:00:00.813 [sway/config.c:789] Read line 107: # Move your focus around
00:00:00.813 [sway/config.c:789] Read line 108: bindsym $mod+$left focus left
00:00:00.813 [sway/commands.c:372] Config command: bindsym $mod+$left focus left
00:00:00.813 [sway/commands.c:392] After replacement: bindsym Mod4+h focus left
00:00:00.813 [sway/commands/bind.c:297] bindsym - Bound Mod4+h to command `focus left` for device '*'
00:00:00.813 [sway/config.c:789] Read line 109: bindsym $mod+$down focus down
00:00:00.813 [sway/commands.c:372] Config command: bindsym $mod+$down focus down
00:00:00.813 [sway/commands.c:392] After replacement: bindsym Mod4+j focus down
00:00:00.813 [sway/commands/bind.c:297] bindsym - Bound Mod4+j to command `focus down` for device '*'
00:00:00.813 [sway/config.c:789] Read line 110: bindsym $mod+$up focus up
00:00:00.813 [sway/commands.c:372] Config command: bindsym $mod+$up focus up
00:00:00.813 [sway/commands.c:392] After replacement: bindsym Mod4+k focus up
00:00:00.813 [sway/commands/bind.c:297] bindsym - Bound Mod4+k to command `focus up` for device '*'
00:00:00.813 [sway/config.c:789] Read line 111: bindsym $mod+$right focus right
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+$right focus right
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+l focus right
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+l to command `focus right` for device '*'
00:00:00.814 [sway/config.c:789] Read line 112: # Or use $mod+[up|down|left|right]
00:00:00.814 [sway/config.c:789] Read line 113: bindsym $mod+Left focus left
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+Left focus left
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+Left focus left
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+Left to command `focus left` for device '*'
00:00:00.814 [sway/config.c:789] Read line 114: bindsym $mod+Down focus down
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+Down focus down
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+Down focus down
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+Down to command `focus down` for device '*'
00:00:00.814 [sway/config.c:789] Read line 115: bindsym $mod+Up focus up
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+Up focus up
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+Up focus up
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+Up to command `focus up` for device '*'
00:00:00.814 [sway/config.c:789] Read line 116: bindsym $mod+Right focus right
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+Right focus right
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+Right focus right
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+Right to command `focus right` for device '*'
00:00:00.814 [sway/config.c:789] Read line 117:
00:00:00.814 [sway/config.c:789] Read line 118: # Move the focused window with the same, but add Shift
00:00:00.814 [sway/config.c:789] Read line 119: bindsym $mod+u move left
00:00:00.814 [sway/commands.c:372] Config command: bindsym $mod+u move left
00:00:00.814 [sway/commands.c:392] After replacement: bindsym Mod4+u move left
00:00:00.814 [sway/commands/bind.c:297] bindsym - Bound Mod4+u to command `move left` for device '*'
00:00:00.815 [sway/config.c:789] Read line 120: bindsym $mod+i move down
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+i move down
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+i move down
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+i to command `move down` for device '*'
00:00:00.815 [sway/config.c:789] Read line 121: bindsym $mod+o move up
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+o move up
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+o move up
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+o to command `move up` for device '*'
00:00:00.815 [sway/config.c:789] Read line 122: bindsym $mod+p move right
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+p move right
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+p move right
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+p to command `move right` for device '*'
00:00:00.815 [sway/config.c:789] Read line 123: # Ditto, with arrow keys
00:00:00.815 [sway/config.c:789] Read line 124: bindsym $mod+Shift+Left move left
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+Shift+Left move left
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Left move left
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
00:00:00.815 [sway/config.c:789] Read line 125: bindsym $mod+Shift+Down move down
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+Shift+Down move down
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Down move down
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
00:00:00.815 [sway/config.c:789] Read line 126: bindsym $mod+Shift+Up move up
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+Shift+Up move up
00:00:00.815 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Up move up
00:00:00.815 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
00:00:00.815 [sway/config.c:789] Read line 127: bindsym $mod+Shift+Right move right
00:00:00.815 [sway/commands.c:372] Config command: bindsym $mod+Shift+Right move right
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Right move right
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
00:00:00.816 [sway/config.c:789] Read line 128: #
00:00:00.816 [sway/config.c:789] Read line 129: # Workspaces:
00:00:00.816 [sway/config.c:789] Read line 130: #
00:00:00.816 [sway/config.c:789] Read line 131: # Switch to workspace
00:00:00.816 [sway/config.c:789] Read line 132: bindsym $mod+1 workspace 1
00:00:00.816 [sway/commands.c:372] Config command: bindsym $mod+1 workspace 1
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+1 workspace 1
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+1 to command `workspace 1` for device '*'
00:00:00.816 [sway/config.c:789] Read line 133: bindsym $mod+2 workspace 2
00:00:00.816 [sway/commands.c:372] Config command: bindsym $mod+2 workspace 2
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+2 workspace 2
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+2 to command `workspace 2` for device '*'
00:00:00.816 [sway/config.c:789] Read line 134: bindsym $mod+3 workspace 3
00:00:00.816 [sway/commands.c:372] Config command: bindsym $mod+3 workspace 3
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+3 workspace 3
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+3 to command `workspace 3` for device '*'
00:00:00.816 [sway/config.c:789] Read line 135: bindsym $mod+4 workspace 4
00:00:00.816 [sway/commands.c:372] Config command: bindsym $mod+4 workspace 4
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+4 workspace 4
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+4 to command `workspace 4` for device '*'
00:00:00.816 [sway/config.c:789] Read line 136: bindsym $mod+5 workspace 5
00:00:00.816 [sway/commands.c:372] Config command: bindsym $mod+5 workspace 5
00:00:00.816 [sway/commands.c:392] After replacement: bindsym Mod4+5 workspace 5
00:00:00.816 [sway/commands/bind.c:297] bindsym - Bound Mod4+5 to command `workspace 5` for device '*'
00:00:00.816 [sway/config.c:789] Read line 137: bindsym $mod+6 workspace 6
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+6 workspace 6
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+6 workspace 6
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+6 to command `workspace 6` for device '*'
00:00:00.817 [sway/config.c:789] Read line 138: bindsym $mod+7 workspace 7
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+7 workspace 7
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+7 workspace 7
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+7 to command `workspace 7` for device '*'
00:00:00.817 [sway/config.c:789] Read line 139: bindsym $mod+8 workspace 8
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+8 workspace 8
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+8 workspace 8
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+8 to command `workspace 8` for device '*'
00:00:00.817 [sway/config.c:789] Read line 140: bindsym $mod+9 workspace 9
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+9 workspace 9
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+9 workspace 9
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+9 to command `workspace 9` for device '*'
00:00:00.817 [sway/config.c:789] Read line 141: bindsym $mod+0 workspace 10
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+0 workspace 10
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+0 workspace 10
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+0 to command `workspace 10` for device '*'
00:00:00.817 [sway/config.c:789] Read line 142: # Move focused container to workspace
00:00:00.817 [sway/config.c:789] Read line 143: bindsym $mod+Shift+1 move container to workspace 1
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+Shift+1 move container to workspace 1
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+1 move container to workspace 1
00:00:00.817 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+1 to command `move container to workspace 1` for device '*'
00:00:00.817 [sway/config.c:789] Read line 144: bindsym $mod+Shift+2 move container to workspace 2
00:00:00.817 [sway/commands.c:372] Config command: bindsym $mod+Shift+2 move container to workspace 2
00:00:00.817 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+2 move container to workspace 2
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+2 to command `move container to workspace 2` for device '*'
00:00:00.818 [sway/config.c:789] Read line 145: bindsym $mod+Shift+3 move container to workspace 3
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+3 move container to workspace 3
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+3 move container to workspace 3
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+3 to command `move container to workspace 3` for device '*'
00:00:00.818 [sway/config.c:789] Read line 146: bindsym $mod+Shift+4 move container to workspace 4
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+4 move container to workspace 4
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+4 move container to workspace 4
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+4 to command `move container to workspace 4` for device '*'
00:00:00.818 [sway/config.c:789] Read line 147: bindsym $mod+Shift+5 move container to workspace 5
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+5 move container to workspace 5
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+5 move container to workspace 5
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+5 to command `move container to workspace 5` for device '*'
00:00:00.818 [sway/config.c:789] Read line 148: bindsym $mod+Shift+6 move container to workspace 6
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+6 move container to workspace 6
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+6 move container to workspace 6
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+6 to command `move container to workspace 6` for device '*'
00:00:00.818 [sway/config.c:789] Read line 149: bindsym $mod+Shift+7 move container to workspace 7
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+7 move container to workspace 7
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+7 move container to workspace 7
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+7 to command `move container to workspace 7` for device '*'
00:00:00.818 [sway/config.c:789] Read line 150: bindsym $mod+Shift+8 move container to workspace 8
00:00:00.818 [sway/commands.c:372] Config command: bindsym $mod+Shift+8 move container to workspace 8
00:00:00.818 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+8 move container to workspace 8
00:00:00.818 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+8 to command `move container to workspace 8` for device '*'
00:00:00.819 [sway/config.c:789] Read line 151: bindsym $mod+Shift+9 move container to workspace 9
00:00:00.819 [sway/commands.c:372] Config command: bindsym $mod+Shift+9 move container to workspace 9
00:00:00.819 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+9 move container to workspace 9
00:00:00.819 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+9 to command `move container to workspace 9` for device '*'
00:00:00.819 [sway/config.c:789] Read line 152: bindsym $mod+Shift+0 move container to workspace 10
00:00:00.819 [sway/commands.c:372] Config command: bindsym $mod+Shift+0 move container to workspace 10
00:00:00.819 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+0 move container to workspace 10
00:00:00.819 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+0 to command `move container to workspace 10` for device '*'
00:00:00.819 [sway/config.c:789] Read line 153: # Note: workspaces can have any name you want, not just numbers.
00:00:00.819 [sway/config.c:789] Read line 154: # We just use 1-10 as the default.
00:00:00.819 [sway/config.c:789] Read line 155: #
00:00:00.819 [sway/config.c:789] Read line 156: # Layout stuff:
00:00:00.819 [sway/config.c:789] Read line 157: #
00:00:00.819 [sway/config.c:789] Read line 158: # You can "split" the current object of your focus with
00:00:00.819 [sway/config.c:789] Read line 159: # $mod+b or $mod+v, for horizontal and vertical splits
00:00:00.819 [sway/config.c:789] Read line 160: # respectively.
00:00:00.819 [sway/config.c:789] Read line 161: bindsym $mod+b splith
00:00:00.819 [sway/commands.c:372] Config command: bindsym $mod+b splith
00:00:00.819 [sway/commands.c:392] After replacement: bindsym Mod4+b splith
00:00:00.819 [sway/commands/bind.c:297] bindsym - Bound Mod4+b to command `splith` for device '*'
00:00:00.819 [sway/config.c:789] Read line 162: bindsym $mod+v splitv
00:00:00.819 [sway/commands.c:372] Config command: bindsym $mod+v splitv
00:00:00.819 [sway/commands.c:392] After replacement: bindsym Mod4+v splitv
00:00:00.819 [sway/commands/bind.c:297] bindsym - Bound Mod4+v to command `splitv` for device '*'
00:00:00.819 [sway/config.c:789] Read line 163:
00:00:00.819 [sway/config.c:789] Read line 164: # Switch the current container between different layout styles
00:00:00.819 [sway/config.c:789] Read line 165: bindsym $mod+q layout stacking
00:00:00.819 [sway/commands.c:372] Config command: bindsym $mod+q layout stacking
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+q layout stacking
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+q to command `layout stacking` for device '*'
00:00:00.820 [sway/config.c:789] Read line 166: bindsym $mod+w layout tabbed
00:00:00.820 [sway/commands.c:372] Config command: bindsym $mod+w layout tabbed
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+w layout tabbed
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
00:00:00.820 [sway/config.c:789] Read line 167: bindsym $mod+e layout toggle split
00:00:00.820 [sway/commands.c:372] Config command: bindsym $mod+e layout toggle split
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+e layout toggle split
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
00:00:00.820 [sway/config.c:789] Read line 168:
00:00:00.820 [sway/config.c:789] Read line 169: # Make the current focus fullscreen
00:00:00.820 [sway/config.c:789] Read line 170: bindsym $mod+f fullscreen
00:00:00.820 [sway/commands.c:372] Config command: bindsym $mod+f fullscreen
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+f fullscreen
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
00:00:00.820 [sway/config.c:789] Read line 171:
00:00:00.820 [sway/config.c:789] Read line 172: # Toggle the current focus between tiling and floating mode
00:00:00.820 [sway/config.c:789] Read line 173: bindsym $mod+Shift+space floating toggle
00:00:00.820 [sway/commands.c:372] Config command: bindsym $mod+Shift+space floating toggle
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+space floating toggle
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
00:00:00.820 [sway/config.c:789] Read line 174:
00:00:00.820 [sway/config.c:789] Read line 175: # Swap focus between the tiling area and the floating area
00:00:00.820 [sway/config.c:789] Read line 176: bindsym $mod+space focus mode_toggle
00:00:00.820 [sway/commands.c:372] Config command: bindsym $mod+space focus mode_toggle
00:00:00.820 [sway/commands.c:392] After replacement: bindsym Mod4+space focus mode_toggle
00:00:00.820 [sway/commands/bind.c:297] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
00:00:00.821 [sway/config.c:789] Read line 177:
00:00:00.821 [sway/config.c:789] Read line 178: # Move focus to the parent container
00:00:00.821 [sway/config.c:789] Read line 179: bindsym $mod+a focus parent
00:00:00.821 [sway/commands.c:372] Config command: bindsym $mod+a focus parent
00:00:00.821 [sway/commands.c:392] After replacement: bindsym Mod4+a focus parent
00:00:00.821 [sway/commands/bind.c:297] bindsym - Bound Mod4+a to command `focus parent` for device '*'
00:00:00.821 [sway/config.c:789] Read line 180: #
00:00:00.821 [sway/config.c:789] Read line 181: # Scratchpad:
00:00:00.821 [sway/config.c:789] Read line 182: #
00:00:00.821 [sway/config.c:789] Read line 183: # Sway has a "scratchpad", which is a bag of holding for windows.
00:00:00.821 [sway/config.c:789] Read line 184: # You can send windows there and get them back later.
00:00:00.821 [sway/config.c:789] Read line 185: # Move the currently focused window to the scratchpad
00:00:00.821 [sway/config.c:789] Read line 186: bindsym $mod+Shift+minus move scratchpad
00:00:00.821 [sway/commands.c:372] Config command: bindsym $mod+Shift+minus move scratchpad
00:00:00.821 [sway/commands.c:392] After replacement: bindsym Mod4+Shift+minus move scratchpad
00:00:00.821 [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
00:00:00.821 [sway/config.c:789] Read line 187: # Show the next scratchpad window or hide the focused scratchpad window.
00:00:00.821 [sway/config.c:789] Read line 188: # If there are multiple scratchpad windows, this command cycles through them.
00:00:00.821 [sway/config.c:789] Read line 189: bindsym $mod+minus scratchpad show
00:00:00.821 [sway/commands.c:372] Config command: bindsym $mod+minus scratchpad show
00:00:00.821 [sway/commands.c:392] After replacement: bindsym Mod4+minus scratchpad show
00:00:00.821 [sway/commands/bind.c:297] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
00:00:00.821 [sway/config.c:789] Read line 190: #
00:00:00.821 [sway/config.c:789] Read line 191: # Resizing containers:
00:00:00.821 [sway/config.c:789] Read line 192: #
00:00:00.821 [sway/config.c:789] Read line 193: mode "resize" {
00:00:00.821 [sway/config.c:843] Entering block 'mode "resize"'
00:00:00.821 [sway/config.c:789] Read line 194: # left will shrink the containers width
00:00:00.821 [sway/config.c:789] Read line 195: # right will grow the containers width
00:00:00.821 [sway/config.c:789] Read line 196: # up will shrink the containers height
00:00:00.822 [sway/config.c:789] Read line 197: # down will grow the containers height
00:00:00.822 [sway/config.c:789] Read line 198: bindsym $left resize shrink width 10px
00:00:00.822 [sway/commands.c:372] Config command: mode "resize" bindsym $left resize shrink width 10px
00:00:00.822 [sway/commands.c:392] After replacement: mode "resize" bindsym h resize shrink width 10px
00:00:00.822 [sway/commands.c:423] Subcommand: bindsym h resize shrink width 10px
00:00:00.822 [sway/commands/bind.c:297] bindsym - Bound h to command `resize shrink width 10px` for device '*'
00:00:00.822 [sway/config.c:789] Read line 199: bindsym $down resize grow height 10px
00:00:00.822 [sway/commands.c:372] Config command: mode "resize" bindsym $down resize grow height 10px
00:00:00.822 [sway/commands.c:392] After replacement: mode "resize" bindsym j resize grow height 10px
00:00:00.822 [sway/commands.c:423] Subcommand: bindsym j resize grow height 10px
00:00:00.822 [sway/commands/bind.c:297] bindsym - Bound j to command `resize grow height 10px` for device '*'
00:00:00.822 [sway/config.c:789] Read line 200: bindsym $up resize shrink height 10px
00:00:00.822 [sway/commands.c:372] Config command: mode "resize" bindsym $up resize shrink height 10px
00:00:00.822 [sway/commands.c:392] After replacement: mode "resize" bindsym k resize shrink height 10px
00:00:00.822 [sway/commands.c:423] Subcommand: bindsym k resize shrink height 10px
00:00:00.822 [sway/commands/bind.c:297] bindsym - Bound k to command `resize shrink height 10px` for device '*'
00:00:00.822 [sway/config.c:789] Read line 201: bindsym $right resize grow width 10px
00:00:00.822 [sway/commands.c:372] Config command: mode "resize" bindsym $right resize grow width 10px
00:00:00.822 [sway/commands.c:392] After replacement: mode "resize" bindsym l resize grow width 10px
00:00:00.822 [sway/commands.c:423] Subcommand: bindsym l resize grow width 10px
00:00:00.822 [sway/commands/bind.c:297] bindsym - Bound l to command `resize grow width 10px` for device '*'
00:00:00.822 [sway/config.c:789] Read line 202:
00:00:00.822 [sway/config.c:789] Read line 203: # Ditto, with arrow keys
00:00:00.822 [sway/config.c:789] Read line 204: bindsym Left resize shrink width 10px
00:00:00.822 [sway/commands.c:372] Config command: mode "resize" bindsym Left resize shrink width 10px
00:00:00.822 [sway/commands.c:392] After replacement: mode "resize" bindsym Left resize shrink width 10px
00:00:00.822 [sway/commands.c:423] Subcommand: bindsym Left resize shrink width 10px
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
00:00:00.823 [sway/config.c:789] Read line 205: bindsym Down resize grow height 10px
00:00:00.823 [sway/commands.c:372] Config command: mode "resize" bindsym Down resize grow height 10px
00:00:00.823 [sway/commands.c:392] After replacement: mode "resize" bindsym Down resize grow height 10px
00:00:00.823 [sway/commands.c:423] Subcommand: bindsym Down resize grow height 10px
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Down to command `resize grow height 10px` for device '*'
00:00:00.823 [sway/config.c:789] Read line 206: bindsym Up resize shrink height 10px
00:00:00.823 [sway/commands.c:372] Config command: mode "resize" bindsym Up resize shrink height 10px
00:00:00.823 [sway/commands.c:392] After replacement: mode "resize" bindsym Up resize shrink height 10px
00:00:00.823 [sway/commands.c:423] Subcommand: bindsym Up resize shrink height 10px
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
00:00:00.823 [sway/config.c:789] Read line 207: bindsym Right resize grow width 10px
00:00:00.823 [sway/commands.c:372] Config command: mode "resize" bindsym Right resize grow width 10px
00:00:00.823 [sway/commands.c:392] After replacement: mode "resize" bindsym Right resize grow width 10px
00:00:00.823 [sway/commands.c:423] Subcommand: bindsym Right resize grow width 10px
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Right to command `resize grow width 10px` for device '*'
00:00:00.823 [sway/config.c:789] Read line 208:
00:00:00.823 [sway/config.c:789] Read line 209: # Return to default mode
00:00:00.823 [sway/config.c:789] Read line 210: bindsym Return mode "default"
00:00:00.823 [sway/commands.c:372] Config command: mode "resize" bindsym Return mode "default"
00:00:00.823 [sway/commands.c:392] After replacement: mode "resize" bindsym Return mode "default"
00:00:00.823 [sway/commands.c:423] Subcommand: bindsym Return mode "default"
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Return to command `mode "default"` for device '*'
00:00:00.823 [sway/config.c:789] Read line 211: bindsym Escape mode "default"
00:00:00.823 [sway/commands.c:372] Config command: mode "resize" bindsym Escape mode "default"
00:00:00.823 [sway/commands.c:392] After replacement: mode "resize" bindsym Escape mode "default"
00:00:00.823 [sway/commands.c:423] Subcommand: bindsym Escape mode "default"
00:00:00.823 [sway/commands/bind.c:297] bindsym - Bound Escape to command `mode "default"` for device '*'
00:00:00.824 [sway/config.c:789] Read line 212: }
00:00:00.824 [sway/config.c:860] Exiting block 'mode "resize"'
00:00:00.824 [sway/config.c:789] Read line 213: bindsym $mod+r mode "resize"
00:00:00.824 [sway/commands.c:372] Config command: bindsym $mod+r mode "resize"
00:00:00.824 [sway/commands.c:392] After replacement: bindsym Mod4+r mode "resize"
00:00:00.824 [sway/commands/bind.c:297] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
00:00:00.824 [sway/config.c:789] Read line 214: #
00:00:00.824 [sway/config.c:789] Read line 215: # Status Bar:
00:00:00.824 [sway/config.c:789] Read line 216: #
00:00:00.824 [sway/config.c:789] Read line 217: # Read `man 5 sway-bar` for more information about this section.
00:00:00.824 [sway/config.c:789] Read line 218: bar {
00:00:00.824 [sway/config.c:843] Entering block 'bar'
00:00:00.824 [sway/config.c:789] Read line 219: position top
00:00:00.824 [sway/commands.c:372] Config command: bar position top
00:00:00.824 [sway/commands.c:392] After replacement: bar position top
00:00:00.824 [sway/commands/bar.c:92] Creating bar: bar-0
00:00:00.824 [sway/commands.c:423] Subcommand: position top
00:00:00.824 [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0
00:00:00.824 [sway/config.c:789] Read line 220: hidden_state hide
00:00:00.824 [sway/commands.c:372] Config command: bar hidden_state hide
00:00:00.824 [sway/commands.c:392] After replacement: bar hidden_state hide
00:00:00.824 [sway/commands.c:423] Subcommand: hidden_state hide
00:00:00.824 [sway/config.c:789] Read line 221: mode hide
00:00:00.824 [sway/commands.c:372] Config command: bar mode hide
00:00:00.824 [sway/commands.c:392] After replacement: bar mode hide
00:00:00.825 [sway/commands.c:423] Subcommand: mode hide
00:00:00.825 [sway/commands/bar/mode.c:33] Setting mode: 'hide' for bar: bar-0
00:00:00.825 [sway/config.c:789] Read line 222: wrap_scroll yes
00:00:00.825 [sway/commands.c:372] Config command: bar wrap_scroll yes
00:00:00.825 [sway/commands.c:392] After replacement: bar wrap_scroll yes
00:00:00.825 [sway/commands.c:423] Subcommand: wrap_scroll yes
00:00:00.825 [sway/commands/bar/wrap_scroll.c:15] Enabling wrap scroll on bar: bar-0
00:00:00.825 [sway/config.c:789] Read line 223: # When the status_command prints a new line to stdout, swaybar updates.
00:00:00.825 [sway/config.c:789] Read line 224: # The default just shows the current date and time.
00:00:00.825 [sway/config.c:789] Read line 225: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.825 [sway/commands.c:372] Config command: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.825 [sway/commands.c:392] After replacement: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.825 [sway/commands.c:423] Subcommand: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.825 [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
00:00:00.825 [sway/config.c:789] Read line 226: #status_command ~/progra/bin/sway-bar.sh
00:00:00.825 [sway/config.c:789] Read line 227: #status_command while sleep 1; do amixer -c 0 -M -D pulse get Master | grep -E -o '[0-9]+%' | xargs printf '%s';done
00:00:00.825 [sway/config.c:789] Read line 228: #"AMIXER -c 0 -M -D pulse get Master | grep -E -o '[0-9]+%' | xargs printf '%s %s'"
00:00:00.825 [sway/config.c:789] Read line 229: colors {
00:00:00.825 [sway/config.c:843] Entering block 'bar colors'
00:00:00.825 [sway/config.c:789] Read line 230: statusline #ffffff
00:00:00.825 [sway/commands.c:372] Config command: bar colors statusline #ffffff
00:00:00.825 [sway/commands.c:392] After replacement: bar colors statusline #ffffff
00:00:00.825 [sway/commands.c:423] Subcommand: colors statusline #ffffff
00:00:00.825 [sway/commands.c:423] Subcommand: statusline #ffffff
00:00:00.825 [sway/config.c:789] Read line 231: background #323232aa
00:00:00.825 [sway/commands.c:372] Config command: bar colors background #323232aa
00:00:00.825 [sway/commands.c:392] After replacement: bar colors background #323232aa
00:00:00.825 [sway/commands.c:423] Subcommand: colors background #323232aa
00:00:00.825 [sway/commands.c:423] Subcommand: background #323232aa
00:00:00.825 [sway/config.c:789] Read line 232: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.826 [sway/commands.c:372] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.826 [sway/commands.c:392] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.826 [sway/commands.c:423] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.826 [sway/commands.c:423] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.826 [sway/config.c:789] Read line 233: }
00:00:00.826 [sway/config.c:860] Exiting block 'bar colors'
00:00:00.826 [sway/config.c:789] Read line 234: }
00:00:00.826 [sway/config.c:860] Exiting block 'bar'
00:00:00.826 [sway/config.c:789] Read line 235:
00:00:00.826 [sway/config.c:789] Read line 236: include /etc/sway/config.d/*
00:00:00.826 [sway/commands.c:372] Config command: include /etc/sway/config.d/*
00:00:00.826 [sway/commands.c:392] After replacement: include /etc/sway/config.d/*
00:00:00.848 [sway/config.c:379] Loading config from /etc/sway/config.d/50-systemd-user.conf
00:00:00.887 [sway/config.c:789] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
00:00:00.887 [sway/config.c:789] Read line 2: # See FS#63021
00:00:00.888 [sway/config.c:789] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
00:00:00.888 [sway/config.c:789] Read line 4:
00:00:00.888 [sway/config.c:789] Read line 5: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
00:00:00.888 [sway/commands.c:372] Config command: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
00:00:00.888 [sway/commands.c:392] After replacement: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
00:00:00.888 [sway/config.c:833] Deferring command `exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK'
00:00:00.888 [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.888 [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.888 [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.888 [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.888 [sway/server.c:198] Initializing Xwayland (lazy=1)
00:00:00.889 [sway/server.c:221] Starting backend on wayland display 'wayland-0'
00:00:00.888 [DEBUG] [backend/libinput/backend.c:55] Initializing libinput
2020-07-25 18:03:41 - [swaybg-1.0/main.c:521] Missing a required Wayland interface
00:00:01.041 [DEBUG] [backend/libinput/events.c:94] Added Power Button [0:1]
00:00:01.042 [sway/input/input-manager.c:234] adding device: '0:1:Power_Button'
00:00:01.042 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:01.042 [sway/input/input-manager.c:184] no fallback seat config - creating default
00:00:01.042 [sway/config/seat.c:65] Adding non-wildcard seat config
00:00:01.042 [sway/config/seat.c:82] Config stored for seat seat0
00:00:01.042 [sway/input/input-manager.c:585] applying seat config for seat seat0
00:00:01.042 [sway/input/seat.c:872] adding device 0:1:Power_Button to seat seat0
00:00:01.052 [sway/input/keyboard.c:877] Created keyboard group 0x564103a853b0
00:00:01.053 [sway/input/keyboard.c:900] Adding keyboard 0:1:Power_Button to group 0x564103a853b0
00:00:01.072 [DEBUG] [backend/libinput/events.c:94] Added Video Bus [0:6]
00:00:01.073 [sway/input/input-manager.c:234] adding device: '0:6:Video_Bus'
00:00:01.073 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:6:Video_Bus')
00:00:01.073 [sway/input/seat.c:872] adding device 0:6:Video_Bus to seat seat0
00:00:01.085 [sway/input/keyboard.c:852] Adding keyboard 0:6:Video_Bus to group 0x564103a853b0
00:00:01.090 [DEBUG] [backend/libinput/events.c:94] Added Power Button [0:1]
00:00:01.090 [sway/input/input-manager.c:234] adding device: '0:1:Power_Button'
00:00:01.090 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:01.090 [sway/input/seat.c:872] adding device 0:1:Power_Button to seat seat0
00:00:01.103 [sway/input/keyboard.c:852] Adding keyboard 0:1:Power_Button to group 0x564103a853b0
00:00:01.107 [DEBUG] [backend/libinput/events.c:94] Added Sleep Button [0:3]
00:00:01.108 [sway/input/input-manager.c:234] adding device: '0:3:Sleep_Button'
00:00:01.108 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:3:Sleep_Button')
00:00:01.108 [sway/input/seat.c:872] adding device 0:3:Sleep_Button to seat seat0
00:00:01.121 [sway/input/keyboard.c:852] Adding keyboard 0:3:Sleep_Button to group 0x564103a853b0
00:00:01.125 [DEBUG] [backend/libinput/events.c:94] Added Logitech Wireless Keyboard PID:4023 [1133:16419]
00:00:01.126 [sway/input/input-manager.c:234] adding device: '1133:16419:Logitech_Wireless_Keyboard_PID:4023'
00:00:01.126 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '1133:16419:Logitech_Wireless_Keyboard_PID:4023')
00:00:01.126 [sway/input/seat.c:872] adding device 1133:16419:Logitech_Wireless_Keyboard_PID:4023 to seat seat0
00:00:01.138 [sway/input/keyboard.c:852] Adding keyboard 1133:16419:Logitech_Wireless_Keyboard_PID:4023 to group 0x564103a853b0
00:00:01.143 [sway/input/input-manager.c:234] adding device: '1133:16419:Logitech_Wireless_Keyboard_PID:4023'
00:00:01.143 [sway/input/seat.c:872] adding device 1133:16419:Logitech_Wireless_Keyboard_PID:4023 to seat seat0
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors:
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4
00:00:01.290 [DEBUG] [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
00:00:01.291 [DEBUG] [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
00:00:01.292 [DEBUG] [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
00:00:01.293 [DEBUG] [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9
00:00:01.294 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10
00:00:01.294 [DEBUG] [backend/libinput/events.c:94] Added Logitech Wireless Mouse [1133:16468]
00:00:01.295 [sway/input/input-manager.c:234] adding device: '1133:16468:Logitech_Wireless_Mouse'
00:00:01.295 [sway/input/seat.c:872] adding device 1133:16468:Logitech_Wireless_Mouse to seat seat0
00:00:01.294 [DEBUG] [backend/libinput/events.c:94] Added Logitech Wireless Mouse [1133:16468]
00:00:01.295 [sway/input/input-manager.c:234] adding device: '1133:16468:Logitech_Wireless_Mouse'
00:00:01.295 [sway/input/seat.c:872] adding device 1133:16468:Logitech_Wireless_Mouse to seat seat0
00:00:01.294 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH Front Mic [0:0]
00:00:01.294 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH Rear Mic [0:0]
00:00:01.295 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH Line [0:0]
00:00:01.295 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH Line Out [0:0]
00:00:01.295 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH Front Headphone [0:0]
00:00:01.295 [DEBUG] [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=3 [0:0]
00:00:01.295 [DEBUG] [backend/libinput/events.c:94] Added Eee PC WMI hotkeys [0:0]
00:00:01.295 [sway/input/input-manager.c:234] adding device: '0:0:Eee_PC_WMI_hotkeys'
00:00:01.295 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:0:Eee_PC_WMI_hotkeys')
00:00:01.295 [sway/input/seat.c:872] adding device 0:0:Eee_PC_WMI_hotkeys to seat seat0
00:00:01.308 [sway/input/keyboard.c:852] Adding keyboard 0:0:Eee_PC_WMI_hotkeys to group 0x564103a853b0
00:00:01.312 [DEBUG] [backend/libinput/backend.c:101] libinput successfully initialized
00:00:01.312 [INFO] [backend/drm/drm.c:1248] Scanning DRM connectors
00:00:01.392 [INFO] [backend/drm/drm.c:1307] Found connector 'DP-1'
00:00:01.418 [INFO] [backend/drm/drm.c:1307] Found connector 'HDMI-A-1'
00:00:01.418 [INFO] [backend/drm/drm.c:1343] 'HDMI-A-1' connected
00:00:01.418 [DEBUG] [backend/drm/drm.c:1344] Current CRTC: 47
00:00:01.418 [INFO] [backend/drm/drm.c:1349] Physical size: 0x0
00:00:01.419 [INFO] [backend/drm/drm.c:1367] Detected modes:
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1360x768@60015 (preferred)
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@60000
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@60000
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@59940
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@50000
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@24000
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1920x1080@23976
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1280x768@59870
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1280x720@60000
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1280x720@59940
00:00:01.419 [INFO] [backend/drm/drm.c:1389] 1280x720@50000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 1024x768@75029
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 1024x768@70069
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 1024x768@60004
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 800x600@75000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 800x600@72188
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 800x600@60317
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x576@50000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x576@50000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x480@60000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x480@60000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x480@59940
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x480@59940
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 720x480@59940
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 640x480@75000
00:00:01.420 [INFO] [backend/drm/drm.c:1389] 640x480@72809
00:00:01.421 [INFO] [backend/drm/drm.c:1389] 640x480@60000
00:00:01.421 [INFO] [backend/drm/drm.c:1389] 640x480@59940
00:00:01.421 [INFO] [backend/drm/drm.c:1389] 640x480@59940
00:00:01.421 [INFO] [backend/drm/drm.c:1389] 720x400@70082
00:00:01.421 [INFO] [backend/drm/drm.c:1307] Found connector 'DP-2'
00:00:01.754 [INFO] [backend/drm/drm.c:1307] Found connector 'HDMI-A-2'
00:00:01.760 [INFO] [backend/drm/drm.c:1307] Found connector 'DP-3'
00:00:01.760 [INFO] [backend/drm/drm.c:1343] 'DP-3' connected
00:00:01.760 [DEBUG] [backend/drm/drm.c:1344] Current CRTC: 81
00:00:01.760 [INFO] [backend/drm/drm.c:1349] Physical size: 410x230
00:00:01.761 [INFO] [backend/drm/drm.c:1367] Detected modes:
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 1360x768@60015 (preferred)
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 1024x768@75029
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 1024x768@60004
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 832x624@74551
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 800x600@75000
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 800x600@60317
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 640x480@75000
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 640x480@59940
00:00:01.761 [INFO] [backend/drm/drm.c:1389] 720x400@70082
00:00:01.763 [INFO] [backend/drm/drm.c:1307] Found connector 'HDMI-A-3'
00:00:01.763 [DEBUG] [backend/drm/drm.c:1080] Reallocating CRTCs
00:00:01.763 [DEBUG] [backend/drm/drm.c:1091] State before reallocation:
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'DP-1' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'HDMI-A-1' crtc=0 state=1 desired_enabled=1
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'DP-2' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'HDMI-A-2' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'DP-3' crtc=2 state=1 desired_enabled=1
00:00:01.763 [DEBUG] [backend/drm/drm.c:1097] 'HDMI-A-3' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1149] State after reallocation:
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'DP-1' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'HDMI-A-1' crtc=0 state=1 desired_enabled=1
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'DP-2' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'HDMI-A-2' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'DP-3' crtc=2 state=1 desired_enabled=1
00:00:01.763 [DEBUG] [backend/drm/drm.c:1156] 'HDMI-A-3' crtc=-1 state=0 desired_enabled=0
00:00:01.763 [INFO] [backend/drm/drm.c:1455] Requesting modeset for 'HDMI-A-1'
00:00:01.764 [sway/desktop/output.c:915] New output 0x5641039ef020: HDMI-A-1
00:00:01.764 [sway/config/output.c:348] Turning on output HDMI-A-1
00:00:01.764 [sway/config/output.c:352] Set HDMI-A-1 mode to 1360x768 (-1.000000 Hz)
00:00:01.764 [sway/config/output.c:266] Assigning configured mode to HDMI-A-1
00:00:01.764 [sway/config/output.c:379] Auto-detected output scale: 1.000000
00:00:01.764 [sway/config/output.c:409] Committing output HDMI-A-1
00:00:01.764 [INFO] [backend/drm/drm.c:803] Modesetting 'HDMI-A-1' with '1360x768@60015 mHz'
00:00:01.764 [DEBUG] [backend/drm/drm.c:685] Initializing renderer on connector 'HDMI-A-1'
00:00:01.844 [DEBUG] [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 30 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
00:00:01.844 [DEBUG] [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 46 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
00:00:01.853 [DEBUG] [GLES2] VS SIMD8 shader: 28 inst, 0 loops, 80 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 448 to 336 bytes.
00:00:01.854 [DEBUG] [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 12 cycles, 0:0 spills:fills, 1 sends, scheduled with mode (null), Promoted 0 constants, compacted 32 to 32 bytes.
00:00:01.878 [sway/config/output.c:455] Set HDMI-A-1 position to 0, 0
00:00:01.878 [sway/tree/workspace.c:283] Workspace: Generating new workspace name for output HDMI-A-1
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '1'
00:00:01.878 [sway/tree/workspace.c:274] Workspace: Found free name 1
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '2'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '3'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '4'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '5'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '6'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '7'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '8'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '9'
00:00:01.878 [sway/tree/workspace.c:218] Got valid workspace command for target: '10'
00:00:01.879 [sway/tree/output.c:127] Creating default workspace 1
00:00:01.879 [sway/tree/workspace.c:63] Adding workspace 1 for output HDMI-A-1
00:00:01.933 [DEBUG] [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors:
00:00:01.933 [DEBUG] [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12
00:00:01.933 [DEBUG] [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13
00:00:01.933 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4
00:00:01.933 [DEBUG] [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12
00:00:01.934 [DEBUG] [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11
00:00:01.935 [DEBUG] [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10
00:00:01.936 [DEBUG] [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15
00:00:01.937 [DEBUG] [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9
00:00:01.938 [DEBUG] [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10
00:00:01.947 [DEBUG] [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 18 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.
00:00:01.947 [DEBUG] [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 26 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.
00:00:02.009 [sway/desktop/layer_shell.c:189] Usable area changed, rearranging output
00:00:02.009 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.009 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:02.009 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.009 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:02.009 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:0:Eee_PC_WMI_hotkeys')
00:00:02.032 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '1133:16419:Logitech_Wireless_Keyboard_PID:4023')
00:00:02.048 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:3:Sleep_Button')
00:00:02.063 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:02.078 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:6:Video_Bus')
00:00:02.093 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:02.108 [sway/desktop/transaction.c:414] Transaction 0x564103a7ef90 committing with 2 instructions
00:00:02.108 [sway/desktop/transaction.c:281] Applying transaction 0x564103a7ef90
00:00:02.107 [INFO] [backend/drm/drm.c:1455] Requesting modeset for 'DP-3'
00:00:02.108 [sway/desktop/output.c:915] New output 0x564103a78ef0: DP-3
00:00:02.108 [sway/config/output.c:348] Turning on output DP-3
00:00:02.108 [sway/config/output.c:352] Set DP-3 mode to 1360x768 (-1.000000 Hz)
00:00:02.108 [sway/config/output.c:266] Assigning configured mode to DP-3
00:00:02.108 [sway/config/output.c:379] Auto-detected output scale: 1.000000
00:00:02.108 [sway/config/output.c:409] Committing output DP-3
00:00:02.108 [INFO] [backend/drm/drm.c:803] Modesetting 'DP-3' with '1360x768@60015 mHz'
00:00:02.108 [DEBUG] [backend/drm/drm.c:685] Initializing renderer on connector 'DP-3'
00:00:02.132 [sway/config/output.c:455] Set DP-3 position to 1360, 0
00:00:02.132 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.132 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:02.132 [sway/desktop/transaction.c:414] Transaction 0x564103b0c5d0 committing with 1 instructions
00:00:02.132 [sway/desktop/transaction.c:281] Applying transaction 0x564103b0c5d0
00:00:02.133 [sway/tree/workspace.c:283] Workspace: Generating new workspace name for output DP-3
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '1'
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '2'
00:00:02.133 [sway/tree/workspace.c:274] Workspace: Found free name 2
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '3'
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '4'
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '5'
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '6'
00:00:02.133 [sway/tree/workspace.c:218] Got valid workspace command for target: '7'
00:00:02.134 [sway/tree/workspace.c:218] Got valid workspace command for target: '8'
00:00:02.134 [sway/tree/workspace.c:218] Got valid workspace command for target: '9'
00:00:02.134 [sway/tree/workspace.c:218] Got valid workspace command for target: '10'
00:00:02.134 [sway/tree/output.c:127] Creating default workspace 2
00:00:02.134 [sway/tree/workspace.c:63] Adding workspace 2 for output DP-3
00:00:02.138 [sway/desktop/layer_shell.c:189] Usable area changed, rearranging output
00:00:02.138 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.138 [sway/tree/arrange.c:293] Arranging workspace '2' at 1360.000000, 0.000000
00:00:02.138 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.138 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:02.138 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:02.139 [sway/tree/arrange.c:293] Arranging workspace '2' at 1360.000000, 0.000000
00:00:02.139 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:0:Eee_PC_WMI_hotkeys')
00:00:02.158 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '1133:16419:Logitech_Wireless_Keyboard_PID:4023')
00:00:02.173 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:3:Sleep_Button')
00:00:02.187 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:02.202 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:6:Video_Bus')
00:00:02.217 [sway/input/libinput.c:257] config_libinput_keyboard('type:keyboard' on '0:1:Power_Button')
00:00:02.232 [sway/desktop/transaction.c:414] Transaction 0x564103ab5f30 committing with 3 instructions
00:00:02.232 [sway/desktop/transaction.c:281] Applying transaction 0x564103ab5f30
00:00:02.232 [INFO] [backend/headless/backend.c:21] Starting headless backend
00:00:02.232 [sway/config/bar.c:262] Invoking swaybar for bar id 'bar-0'
00:00:02.242 [sway/config/bar.c:254] Spawned swaybar bar-0
00:00:02.242 [sway/config.c:638] Running deferred commands
00:00:02.242 [sway/commands.c:255] Handling command 'focus output HDMI-A-1'
00:00:02.242 [sway/commands.c:255] Handling command 'exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK'
00:00:02.242 [sway/commands/exec_always.c:46] Executing systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
00:00:02.248 [sway/commands/exec_always.c:87] Child process created with pid 681
00:00:02.248 [sway/tree/root.c:290] Recording workspace for process 681
00:00:02.248 [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:02.249 [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:02.256 [sway/commands/exec_always.c:87] Child process created with pid 683
00:00:02.256 [sway/tree/root.c:290] Recording workspace for process 683
00:00:02.256 [sway/server.c:232] Running compositor on wayland display 'wayland-0'
2020-07-25 18:03:43 - [swaybg-1.0/main.c:299] Found config DP-3 for output DP-3 (Goldstar Company Ltd W1943 0x0000BF2D)
2020-07-25 18:03:43 - [swaybg-1.0/main.c:299] Found config HDMI-A-1 for output HDMI-A-1 (Unknown WXGA TV 0x00000101)
00:00:02.277 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e0a9b0 (res 0x564103ca8fe0)
00:00:02.277 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103caafb0 (res 0x564103e18cf0)
00:00:02.278 [sway/desktop/layer_shell.c:513] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0
00:00:02.277 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e1a8e0 (res 0x564103e17d90)
00:00:02.277 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103ca3ce0 (res 0x564103ab5bd0)
00:00:02.278 [sway/desktop/layer_shell.c:513] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0
00:00:02.298 [sway/ipc-server.c:153] Event on IPC listening socket
00:00:02.298 [sway/ipc-server.c:199] New client: fd 43
00:00:02.298 [sway/ipc-server.c:153] Event on IPC listening socket
00:00:02.298 [sway/ipc-server.c:199] New client: fd 46
00:00:02.298 [sway/ipc-server.c:219] Client 43 readable
00:00:02.298 [sway/ipc-server.c:219] Client 43 readable
00:00:02.298 [sway/ipc-server.c:960] Added IPC reply of type 0x6 to client 43 queue: { "id": "bar-0", "mode": "hide", "hidden_state": "hide", "position": "top", "status_command": "while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done", "font": "monospace 10", "gaps": { "top": 0, "right": 0, "bottom": 0, "left": 0 }, "bar_height": 0, "status_padding": 1, "status_edge_padding": 3, "wrap_scroll": true, "workspace_buttons": true, "strip_workspace_numbers": false, "strip_workspace_name": false, "binding_mode_indicator": true, "verbose": false, "pango_markup": false, "colors": { "background": "#323232aa", "statusline": "#ffffffff", "separator": "#666666ff", "focused_background": "#323232aa", "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:02.298 [sway/ipc-server.c:536] Client 43 writable
00:00:02.299 [sway/ipc-server.c:219] Client 46 readable
00:00:02.299 [sway/ipc-server.c:219] Client 46 readable
00:00:02.299 [sway/ipc-server.c:960] Added IPC reply of type 0x2 to client 46 queue: {"success": true}
00:00:02.299 [sway/ipc-server.c:536] Client 46 writable
00:00:02.423 [sway/ipc-server.c:219] Client 43 readable
00:00:02.423 [sway/ipc-server.c:960] Added IPC reply of type 0x1 to client 43 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 0, "width": 1360, "height": 768 }, "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 }, { "id": 6, "name": "2", "rect": { "x": 1360, "y": 0, "width": 1360, "height": 768 }, "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": 2, "output": "DP-3", "type": "workspace", "representation": null, "focused": false, "visible": true } ]
00:00:02.424 [sway/ipc-server.c:536] Client 43 writable
00:00:02.424 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103cb3a60 (res 0x564103a75330)
00:00:02.424 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103cb3e10 (res 0x564103c9d340)
00:00:02.424 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103cb41c0 (res 0x564103a83c40)
00:00:04.716 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:04.716 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": true }
00:00:04.717 [sway/ipc-server.c:536] Client 46 writable
00:00:04.875 [sway/commands/bind.c:616] running command for binding: exec kitty
00:00:04.876 [sway/commands.c:255] Handling command 'exec kitty'
00:00:04.876 [sway/commands/exec_always.c:46] Executing kitty
00:00:04.890 [sway/commands/exec_always.c:87] Child process created with pid 693
00:00:04.890 [sway/tree/root.c:290] Recording workspace for process 693
00:00:04.895 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103cb4570 (res 0x564103b31990)
00:00:04.895 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103cc0a40 (res 0x564103ab8450)
00:00:04.895 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:04.895 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:05.068 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:05.068 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": false }
00:00:05.068 [sway/ipc-server.c:536] Client 46 writable
00:00:05.069 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:05.069 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:06.824 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e12fa0 (res 0x564103b360b0)
00:00:06.824 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e18510 (res 0x564103c97560)
00:00:06.923 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:06.923 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": true }
00:00:06.924 [sway/ipc-server.c:536] Client 46 writable
00:00:06.926 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103e03350 (res 0x564103aaf370)
00:00:06.926 [DEBUG] [types/wlr_xdg_decoration_v1.c:210] new xdg_toplevel_decoration 0x564103aa0700 (res 0x564103b33470)
00:00:06.927 [sway/desktop/xdg_shell.c:510] New xdg_shell toplevel title='kitty' app_id='kitty'
00:00:06.930 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103cb4570 (res 0x564103ca5560)
00:00:06.930 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103cb6360 (res 0x564103ca7f00)
00:00:06.931 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:06.931 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:06.951 [sway/tree/root.c:249] Looking up workspace for pid 693
00:00:06.951 [sway/tree/root.c:256] found pid_workspace for pid 693, workspace 1
00:00:06.975 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:06.975 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:06.975 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b730 horizontally
00:00:06.975 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:06.975 [sway/tree/arrange.c:293] Arranging workspace '2' at 1360.000000, 0.000000
00:00:06.975 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:06.975 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:06.975 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7b0 horizontally
00:00:06.975 [sway/desktop/transaction.c:414] Transaction 0x564103e26050 committing with 4 instructions
00:00:07.176 [sway/desktop/transaction.c:379] Transaction 0x564103e26050 timed out (1 waiting)
00:00:07.176 [sway/desktop/transaction.c:281] Applying transaction 0x564103e26050
00:00:07.176 [sway/tree/container.c:1167] Container 0x564103e14130 entered output 0x564103a85720
00:00:07.277 [sway/commands/bind.c:616] running command for binding: exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:07.277 [sway/commands.c:255] Handling command 'exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --'
00:00:07.278 [sway/commands/exec_always.c:46] Executing bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:07.290 [sway/commands/exec_always.c:87] Child process created with pid 703
00:00:07.290 [sway/tree/root.c:290] Recording workspace for process 703
00:00:07.395 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:07.396 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": false }
00:00:07.396 [sway/ipc-server.c:536] Client 46 writable
00:00:07.397 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:07.397 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:07.483 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e803a0 (res 0x564103cb63f0)
00:00:07.483 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e7a520 (res 0x564103e7a680)
00:00:07.483 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:07.489 [sway/desktop/layer_shell.c:343] Layer surface destroyed (menu)
00:00:07.488 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e803a0 (res 0x564103cb63f0)
00:00:07.488 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e7a520 (res 0x564103e7a680)
00:00:07.489 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:07.489 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e808b0 (res 0x564103e80820)
00:00:07.489 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e80c60 (res 0x564103e80dc0)
00:00:07.489 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:08.067 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:08.068 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": true }
00:00:08.068 [sway/ipc-server.c:536] Client 46 writable
00:00:08.073 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e81d50 (res 0x564103ce3320)
00:00:08.074 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e2c9c0 (res 0x564103c9e6c0)
00:00:08.074 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:08.075 [sway/desktop/layer_shell.c:513] new layer surface: namespace panel layer 3 anchor 3 size 0x20 margin 0,0,0,0
00:00:08.102 [DEBUG] [GLES2] FS SIMD8 shader: 13 inst, 0 loops, 54 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 208 to 160 bytes.
00:00:08.102 [DEBUG] [GLES2] FS SIMD16 shader: 13 inst, 0 loops, 70 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 208 to 160 bytes.
00:00:08.187 [sway/commands/bind.c:616] running command for binding: exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:08.188 [sway/commands.c:255] Handling command 'exec bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --'
00:00:08.188 [sway/commands/exec_always.c:46] Executing bemenu -m -1 -i --nb "#3f3f3f" --nf "#dcdccc" --fn "pango:DejaVu Sans Mono 12" --scrollbar=always | xargs swaymsg exec --
00:00:08.204 [sway/commands/exec_always.c:87] Child process created with pid 779
00:00:08.204 [sway/tree/root.c:290] Recording workspace for process 779
00:00:08.248 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e96dc0 (res 0x564103e80f20)
00:00:08.248 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e8d470 (res 0x564103a7a8b0)
00:00:08.248 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:08.253 [sway/desktop/layer_shell.c:343] Layer surface destroyed (menu)
00:00:08.253 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e96dc0 (res 0x564103e80f20)
00:00:08.253 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e97d90 (res 0x564103a7a8b0)
00:00:08.253 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:08.253 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103dd3d40 (res 0x564103e9d7d0)
00:00:08.253 [DEBUG] [types/wlr_layer_shell_v1.c:438] new layer_surface 0x564103e8d470 (res 0x564103e885d0)
00:00:08.254 [sway/desktop/layer_shell.c:513] new layer surface: namespace menu layer 2 anchor 2 size 0x32 margin 0,0,0,0
00:00:08.589 [sway/ipc-server.c:360] Sending bar_state_update event
00:00:08.589 [sway/ipc-server.c:960] Added IPC reply of type 0x80000014 to client 46 queue: { "id": "bar-0", "visible_by_modifier": false }
00:00:08.589 [sway/ipc-server.c:536] Client 46 writable
00:00:08.589 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:08.589 [sway/desktop/layer_shell.c:343] Layer surface destroyed (panel)
00:00:12.146 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e13d10 (res 0x564103dd35e0)
00:00:12.146 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e91d80 (res 0x564103e92130)
00:00:15.780 [sway/commands/bind.c:616] running command for binding: exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:15.780 [sway/commands.c:255] Handling command 'exec pactl set-sink-volume @DEFAULT_SINK@ -5%'
00:00:15.780 [sway/commands/exec_always.c:46] Executing pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:15.795 [sway/commands/exec_always.c:87] Child process created with pid 861
00:00:15.796 [sway/tree/root.c:290] Recording workspace for process 861
00:00:15.875 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e37760 (res 0x564103e83070)
00:00:15.875 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e972b0 (res 0x564103cad780)
00:00:15.875 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103e97690 (res 0x564103e977e0)
00:00:15.875 [sway/desktop/xdg_shell.c:510] New xdg_shell toplevel title='Thunar' app_id='thunar'
00:00:15.875 [DEBUG] [types/wlr_server_decoration.c:106] new server_decoration 0x564103e9d5b0 (res 0x564103e97aa0)
00:00:15.920 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e87480 (res 0x564103e87830)
00:00:16.116 [sway/commands/bind.c:616] running command for binding: exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:16.116 [sway/commands.c:255] Handling command 'exec pactl set-sink-volume @DEFAULT_SINK@ -5%'
00:00:16.116 [sway/commands/exec_always.c:46] Executing pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:16.122 [sway/commands/exec_always.c:87] Child process created with pid 868
00:00:16.122 [sway/tree/root.c:290] Recording workspace for process 868
00:00:16.154 [sway/tree/root.c:249] Looking up workspace for pid 783
00:00:16.155 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:16.155 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:16.155 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7b0 horizontally
00:00:16.155 [sway/desktop/transaction.c:414] Transaction 0x564103e9ad90 committing with 4 instructions
00:00:16.275 [sway/desktop/transaction.c:492] Transaction 0x564103e9ad90 is ready
00:00:16.277 [sway/desktop/transaction.c:281] Applying transaction 0x564103e9ad90
00:00:16.278 [sway/tree/container.c:1167] Container 0x564103e97b30 entered output 0x564103a85720
00:00:16.401 [sway/commands/bind.c:616] running command for binding: exec pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:16.401 [sway/commands.c:255] Handling command 'exec pactl set-sink-volume @DEFAULT_SINK@ -5%'
00:00:16.401 [sway/commands/exec_always.c:46] Executing pactl set-sink-volume @DEFAULT_SINK@ -5%
00:00:16.406 [sway/commands/exec_always.c:87] Child process created with pid 870
00:00:16.406 [sway/tree/root.c:290] Recording workspace for process 870
00:00:18.273 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=0 serial=61
00:00:18.351 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=61 serial=62
00:00:19.940 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=61 serial=63
00:00:20.050 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=63 serial=64
00:00:20.096 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=63 serial=65
00:00:20.234 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=65 serial=66
00:00:21.094 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=65 serial=67
00:00:21.222 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=67 serial=68
00:00:21.466 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=67 serial=69
00:00:21.553 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=69 serial=70
00:00:21.599 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea18f0 (res 0x564103eab2d0)
00:00:21.599 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e9dbe0 (res 0x564103e79b30)
00:00:21.600 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103eab360 (res 0x564103e87c60)
00:00:21.601 [sway/desktop/xdg_shell.c:506] New xdg_shell popup
00:00:22.699 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=69 serial=74
00:00:22.833 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=74 serial=75
00:00:22.839 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:23.227 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=74 serial=78
00:00:23.357 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=78 serial=79
00:00:23.369 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea1b50 (res 0x564103ea2690)
00:00:23.370 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea21d0 (res 0x564103eab2d0)
00:00:23.370 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103e9de40 (res 0x564103e18b60)
00:00:23.371 [sway/desktop/xdg_shell.c:506] New xdg_shell popup
00:00:23.371 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:23.629 [INFO] [xwayland/server.c:92] WAYLAND_SOCKET=23 Xwayland :0 -rootless -terminate -listen 20 -listen 22 -wm 61
glamor: No eglstream capable devices found
00:00:24.011 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=78 serial=83
00:00:24.145 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=83 serial=84
00:00:24.150 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:24.515 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=83 serial=87
00:00:24.631 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=87 serial=88
00:00:24.640 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea1b50 (res 0x564103ea4cf0)
00:00:24.641 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea2190 (res 0x564103eab2d0)
00:00:24.641 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103e9dbe0 (res 0x564103e18b60)
00:00:24.642 [sway/desktop/xdg_shell.c:506] New xdg_shell popup
00:00:25.078 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=87 serial=92
00:00:25.142 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea3760 (res 0x564103ea3b10)
00:00:25.144 [DEBUG] [xwayland/server.c:331] sent SIGUSR1 to process 668
00:00:25.148 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:25.147 [DEBUG] [types/wlr_relative_pointer_v1.c:145] relative_pointer_v1 0x564103e9fd70 created for client 0x564103e9e8c0
00:00:25.148 [DEBUG] [xwayland/server.c:225] Xserver is ready
00:00:25.151 [DEBUG] [xwayland/xwm.c:1548] xfixes version: 5.0
00:00:25.196 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.196 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:25.196 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.196 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:25.196 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.197 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (2097153)
00:00:25.197 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.197 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (2097154)
00:00:25.197 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.197 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (2097154)
00:00:25.198 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.198 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (2097155)
00:00:25.198 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.198 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:25.203 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=92 serial=96
00:00:25.207 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:25.255 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.255 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: MappingNotify (34)
00:00:25.256 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.256 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: MappingNotify (34)
00:00:25.642 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=92 serial=99
00:00:25.728 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=99 serial=100
00:00:25.750 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ea2190 (res 0x564103ea4cf0)
00:00:25.751 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e9eff0 (res 0x564103ea2810)
00:00:25.751 [DEBUG] [types/xdg_shell/wlr_xdg_surface.c:462] new xdg_surface 0x564103e9dba0 (res 0x564103e79b30)
00:00:25.752 [sway/desktop/xdg_shell.c:506] New xdg_shell popup
00:00:25.929 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.929 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (4194308)
00:00:25.930 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:25.930 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.930 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (8388612)
00:00:25.931 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:25.931 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:25.931 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (6291460)
00:00:25.932 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.292 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=99 serial=104
00:00:26.394 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=104 serial=105
00:00:26.396 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:26.639 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.639 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (10485764)
00:00:26.639 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.755 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.755 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (8388614)
00:00:26.756 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.755 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.755 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (8388616)
00:00:26.756 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.756 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.756 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.757 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:26.757 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.757 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388614)
00:00:26.757 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.757 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388614)
00:00:26.757 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.757 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.757 [sway/tree/view.c:401] View 0x564103e9eff0 updated CSD to 0
00:00:26.757 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:26.757 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.757 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.758 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:26.758 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.758 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.758 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: vlc
00:00:26.758 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.758 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.781 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.781 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.782 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 291 (XdndAware) for window 8388614
00:00:26.782 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.782 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.783 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 8388614
00:00:26.783 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.783 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.784 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-main
00:00:26.784 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.785 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.785 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.785 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.785 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.785 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.785 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.785 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 335 (_NET_WM_ICON_NAME) for window 8388614
00:00:26.785 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.785 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.785 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 8388614
00:00:26.785 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.785 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.786 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.792 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.792 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (6291462)
00:00:26.793 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.793 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.793 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (6291464)
00:00:26.793 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.795 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.795 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.796 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:26.796 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.796 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291462)
00:00:26.796 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.796 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291462)
00:00:26.796 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.796 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.797 [sway/tree/view.c:401] View 0x564103e93520 updated CSD to 0
00:00:26.796 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:26.798 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.798 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.798 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:26.798 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.798 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.798 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: vlc
00:00:26.798 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.798 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.822 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.822 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (4194310)
00:00:26.823 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.822 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.822 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (4194312)
00:00:26.823 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:26.826 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.826 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.826 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 291 (XdndAware) for window 6291462
00:00:26.830 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.830 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.830 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 6291462
00:00:26.831 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.831 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.831 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-main
00:00:26.831 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.831 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.831 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.831 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.831 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.831 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.831 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.832 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 335 (_NET_WM_ICON_NAME) for window 6291462
00:00:26.832 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.832 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.832 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:26.832 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.832 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194310)
00:00:26.832 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.832 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194310)
00:00:26.832 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.832 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.833 [sway/tree/view.c:401] View 0x564103e93f60 updated CSD to 0
00:00:26.832 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:26.833 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.833 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.834 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 6291462
00:00:26.834 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.834 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:26.834 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.834 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.834 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.834 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:26.834 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.834 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.834 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: vlc
00:00:26.834 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.835 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.852 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.852 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.853 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 291 (XdndAware) for window 4194310
00:00:26.856 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.857 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.857 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 4194310
00:00:26.857 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.857 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.857 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-main
00:00:26.857 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.857 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.857 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.858 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.858 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.858 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.858 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.858 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 335 (_NET_WM_ICON_NAME) for window 4194310
00:00:26.859 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.859 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.859 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 4194310
00:00:26.859 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.859 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:26.859 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.936 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:24.639 [swaybar/tray/host.c:24] Registering Status Notifier Item 'org.kde.StatusNotifierItem-906-2/StatusNotifierItem'
00:00:26.937 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.937 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.937 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (8388614) [989x1123+0,0]
00:00:26.937 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.938 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388614)
00:00:26.938 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.938 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.938 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.938 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.938 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.938 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.938 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.938 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:26.945 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.945 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.945 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:26.945 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.945 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.946 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:26.946 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.946 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (8388614) [1360x768+0,20]
00:00:26.946 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.950 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.950 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.950 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:26.950 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.950 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.950 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.951 [DEBUG] [xwayland/xwm.c:923] XCB_MAP_REQUEST (8388614)
00:00:26.951 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.951 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:24.654 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-906-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:26.953 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 271 (WM_STATE) for window 8388614
00:00:26.953 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.953 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.953 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.953 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.953 [DEBUG] [xwayland/xwm.c:942] XCB_MAP_NOTIFY (8388614)
00:00:26.953 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.953 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388614)
00:00:26.953 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103e94810 (res 0x564103ea2810)
00:00:26.953 [DEBUG] [xwayland/xwm.c:1396] New xwayland surface: 0x564103e94810
00:00:26.954 [DEBUG] [xwayland/xwm.c:389] XCB_ATOM_WM_CLASS: vlc vlc
00:00:26.954 [DEBUG] [xwayland/xwm.c:524] WM_PROTOCOLS (4)
00:00:26.954 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:26.954 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:26.955 [sway/tree/view.c:401] View 0x564103e9eff0 updated CSD to 0
00:00:26.954 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:26.954 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:26.955 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:26.955 [DEBUG] [xwayland/xwm.c:478] NET_WM_PID 906
00:00:26.964 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:26.964 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:26.965 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:24.717 [swaybar/tray/host.c:24] Registering Status Notifier Item 'org.kde.StatusNotifierItem-922-2/StatusNotifierItem'
00:00:27.016 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:27.016 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.016 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:27.016 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (6291462) [989x1123+0,0]
00:00:27.017 [DEBUG] [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
00:00:27.030 [sway/tree/root.c:249] Looking up workspace for pid 906
00:00:27.030 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.030 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:27.030 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7c0 horizontally
00:00:27.031 [sway/desktop/transaction.c:414] Transaction 0x564103e9f3d0 committing with 5 instructions
00:00:27.052 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:24.761 [swaybar/tray/host.c:24] Registering Status Notifier Item 'org.kde.StatusNotifierItem-886-2/StatusNotifierItem'
00:00:27.094 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.094 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.094 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:27.094 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: -Official MV- Grand escape - Weathering With You.mp4 - Reproductor multimedia VLC
00:00:27.095 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (8388614)
00:00:27.095 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291462)
00:00:27.095 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.095 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (4194310) [989x1123+0,0]
00:00:27.095 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194310)
00:00:27.096 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (10485766)
00:00:27.096 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:27.096 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (10485768)
00:00:27.096 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:27.096 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.096 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.096 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.096 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.096 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.096 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.097 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.097 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.097 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.097 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:27.097 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485766)
00:00:27.097 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485766)
00:00:27.097 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.098 [sway/tree/view.c:401] View 0x564103e25840 updated CSD to 0
00:00:27.097 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:27.099 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=104 serial=113
00:00:27.109 [sway/desktop/transaction.c:492] Transaction 0x564103e9f3d0 is ready
00:00:27.109 [sway/desktop/transaction.c:281] Applying transaction 0x564103e9f3d0
00:00:27.111 [sway/tree/container.c:1167] Container 0x564103e950f0 entered output 0x564103a85720
00:00:27.116 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.121 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.121 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.121 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.121 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (6291462) [1360x768+0,20]
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.122 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.122 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: vlc
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.122 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.122 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.122 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (4194310) [1360x768+0,20]
00:00:27.122 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.123 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.123 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.123 [DEBUG] [xwayland/xwm.c:923] XCB_MAP_REQUEST (6291462)
00:00:27.123 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.130 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.130 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:24.833 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-922-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.135 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 271 (WM_STATE) for window 6291462
00:00:27.135 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.135 [DEBUG] [xwayland/xwm.c:942] XCB_MAP_NOTIFY (6291462)
00:00:27.136 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291462)
00:00:27.140 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.140 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 291 (XdndAware) for window 10485766
00:00:27.140 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103eb9e60 (res 0x564103ea2470)
00:00:27.140 [DEBUG] [xwayland/xwm.c:1396] New xwayland surface: 0x564103eb9e60
00:00:27.140 [DEBUG] [xwayland/xwm.c:389] XCB_ATOM_WM_CLASS: vlc vlc
00:00:27.140 [DEBUG] [xwayland/xwm.c:524] WM_PROTOCOLS (4)
00:00:27.141 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.141 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.141 [sway/tree/view.c:401] View 0x564103e93520 updated CSD to 0
00:00:27.141 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:27.141 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:27.141 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:27.141 [DEBUG] [xwayland/xwm.c:478] NET_WM_PID 922
00:00:27.145 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.146 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 10485766
00:00:27.146 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.146 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-main
00:00:27.146 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.146 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:27.146 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.155 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.155 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 335 (_NET_WM_ICON_NAME) for window 10485766
00:00:27.157 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.157 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 10485766
00:00:27.157 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.157 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:27.164 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.164 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.164 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.165 [DEBUG] [xwayland/xwm.c:923] XCB_MAP_REQUEST (4194310)
00:00:27.170 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.170 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 271 (WM_STATE) for window 4194310
00:00:27.170 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.170 [DEBUG] [xwayland/xwm.c:942] XCB_MAP_NOTIFY (4194310)
00:00:27.170 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194310)
00:00:27.171 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103eb9270 (res 0x564103cbf180)
00:00:27.171 [DEBUG] [xwayland/xwm.c:1396] New xwayland surface: 0x564103eb9270
00:00:27.171 [DEBUG] [xwayland/xwm.c:389] XCB_ATOM_WM_CLASS: vlc vlc
00:00:27.171 [DEBUG] [xwayland/xwm.c:524] WM_PROTOCOLS (4)
00:00:27.171 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.171 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.172 [sway/tree/view.c:401] View 0x564103e93f60 updated CSD to 0
00:00:27.171 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:27.172 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:27.172 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:27.172 [DEBUG] [xwayland/xwm.c:478] NET_WM_PID 886
00:00:24.884 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-886-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.191 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=113 serial=114
00:00:27.194 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:27.230 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:27.230 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:27.247 [sway/tree/root.c:249] Looking up workspace for pid 922
00:00:27.248 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.248 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:27.248 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7c0 horizontally
00:00:27.248 [sway/desktop/transaction.c:414] Transaction 0x564103e9ed30 committing with 6 instructions
00:00:27.247 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:27.260 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.261 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.261 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.261 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.261 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.415 [sway/desktop/transaction.c:492] Transaction 0x564103e9ed30 is ready
00:00:27.415 [sway/desktop/transaction.c:281] Applying transaction 0x564103e9ed30
00:00:27.415 [sway/tree/container.c:1167] Container 0x564103ebb6f0 entered output 0x564103a85720
00:00:27.421 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:27.421 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.422 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.422 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.422 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: TODOS LOS DIOSES -Zeus- Hades- Poseidón- Deméter- Hestia y Hera- Destripando la Historia.mp4 - Reproductor multimedia VLC
00:00:27.422 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.441 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.442 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.465 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:25.167 [swaybar/tray/host.c:24] Registering Status Notifier Item 'org.kde.StatusNotifierItem-947-2/StatusNotifierItem'
00:00:27.465 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (10485766) [989x1123+0,0]
00:00:27.465 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485766)
00:00:27.465 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.466 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.466 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.466 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.469 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.469 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.469 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.469 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.469 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (10485766) [1360x768+0,20]
00:00:25.177 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-906-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.481 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.481 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.482 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.483 [DEBUG] [xwayland/xwm.c:923] XCB_MAP_REQUEST (10485766)
00:00:27.484 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.489 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 271 (WM_STATE) for window 10485766
00:00:27.489 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.489 [DEBUG] [xwayland/xwm.c:942] XCB_MAP_NOTIFY (10485766)
00:00:27.489 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485766)
00:00:27.489 [DEBUG] [types/wlr_surface.c:666] New wlr_surface 0x564103ec2b40 (res 0x564103eb9b70)
00:00:27.489 [DEBUG] [xwayland/xwm.c:1396] New xwayland surface: 0x564103ec2b40
00:00:27.489 [DEBUG] [xwayland/xwm.c:389] XCB_ATOM_WM_CLASS: vlc vlc
00:00:25.192 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-947-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.490 [DEBUG] [xwayland/xwm.c:524] WM_PROTOCOLS (4)
00:00:27.490 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:27.490 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.491 [sway/tree/view.c:401] View 0x564103e25840 updated CSD to 0
00:00:27.490 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:27.490 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (1)
00:00:27.491 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Reproductor multimedia VLC
00:00:27.491 [DEBUG] [xwayland/xwm.c:478] NET_WM_PID 947
00:00:25.194 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-947-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.492 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.492 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:27.495 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.496 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: amazarashi『月曜日』“Monday” Music Video|マンガ「月曜日の友達」主題歌.mp4 - Reproductor multimedia VLC
00:00:27.672 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.672 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:27.672 [sway/tree/arrange.c:77] Arranging 0x7ffc7178bb80 horizontally
00:00:27.672 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.672 [sway/tree/arrange.c:293] Arranging workspace '2' at 1360.000000, 0.000000
00:00:27.694 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:27.697 [sway/desktop/transaction.c:414] Transaction 0x564103e9aef0 committing with 6 instructions
00:00:27.709 [sway/tree/root.c:249] Looking up workspace for pid 886
00:00:27.710 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.710 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:27.710 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7c0 horizontally
00:00:27.710 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.710 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.716 [sway/tree/root.c:249] Looking up workspace for pid 947
00:00:27.717 [sway/tree/arrange.c:263] Usable area for ws: 1360x768@0,0
00:00:27.717 [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
00:00:27.717 [sway/tree/arrange.c:77] Arranging 0x7ffc7178b7c0 horizontally
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.717 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:27.717 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.718 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.718 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.718 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.719 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.744 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.744 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.744 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.776 [sway/desktop/transaction.c:492] Transaction 0x564103e9aef0 is ready
00:00:27.776 [sway/desktop/transaction.c:281] Applying transaction 0x564103e9aef0
00:00:27.777 [sway/desktop/transaction.c:414] Transaction 0x564103a52b40 committing with 4 instructions
00:00:27.777 [sway/desktop/transaction.c:281] Applying transaction 0x564103a52b40
00:00:27.777 [sway/desktop/transaction.c:414] Transaction 0x564103eb5750 committing with 7 instructions
00:00:27.795 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.795 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:27.795 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:27.798 [sway/desktop/transaction.c:492] Transaction 0x564103eb5750 is ready
00:00:27.798 [sway/desktop/transaction.c:281] Applying transaction 0x564103eb5750
00:00:27.798 [sway/tree/container.c:1167] Container 0x564103eff440 entered output 0x564103a85720
00:00:27.809 [sway/desktop/transaction.c:414] Transaction 0x564103f026e0 committing with 8 instructions
00:00:25.527 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-922-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.845 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:27.847 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388634)
00:00:27.848 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388634)
00:00:27.850 [sway/desktop/transaction.c:492] Transaction 0x564103f026e0 is ready
00:00:27.850 [sway/desktop/transaction.c:281] Applying transaction 0x564103f026e0
00:00:27.850 [sway/tree/container.c:1167] Container 0x564103f009f0 entered output 0x564103a85720
00:00:27.855 [sway/desktop/transaction.c:414] Transaction 0x564103f01b10 committing with 4 instructions
00:00:27.855 [sway/desktop/transaction.c:281] Applying transaction 0x564103f01b10
00:00:27.855 [sway/desktop/transaction.c:414] Transaction 0x564103e9da60 committing with 4 instructions
00:00:27.855 [sway/desktop/transaction.c:281] Applying transaction 0x564103e9da60
00:00:27.872 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388637)
00:00:27.872 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388637)
00:00:27.874 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388640)
00:00:27.874 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388640)
00:00:27.875 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388643)
00:00:27.875 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388643)
00:00:27.876 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388646)
00:00:27.876 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388646)
00:00:27.877 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388649)
00:00:27.878 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388649)
00:00:27.879 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388652)
00:00:27.879 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388652)
00:00:27.880 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388655)
00:00:27.880 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388655)
00:00:27.887 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388658)
00:00:27.887 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388658)
00:00:27.889 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388661)
00:00:27.889 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388661)
00:00:27.890 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (8388652)
00:00:27.942 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.942 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Sparkle Your Name AMV.mp4 - Reproductor multimedia VLC
00:00:25.680 [swaybar/tray/item.c:121] org.kde.StatusNotifierItem-886-2/StatusNotifierItem IconThemePath: Property org.kde.StatusNotifierItem.IconThemePath was not found in object /StatusNotifierItem
00:00:27.996 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (10485766)
00:00:27.997 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194324)
00:00:27.997 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194324)
00:00:28.001 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (8388646)
00:00:28.005 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194327)
00:00:28.005 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194327)
00:00:28.019 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194330)
00:00:28.019 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194330)
00:00:28.021 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194333)
00:00:28.021 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194333)
00:00:28.022 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194336)
00:00:28.022 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194336)
00:00:28.023 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194339)
00:00:28.023 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194339)
00:00:28.024 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194342)
00:00:28.024 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194342)
00:00:28.025 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194345)
00:00:28.025 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194345)
00:00:28.026 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194348)
00:00:28.027 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194348)
00:00:28.029 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194351)
00:00:28.029 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194351)
00:00:28.030 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194342)
00:00:28.052 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194330)
00:00:28.052 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194336)
00:00:28.054 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:28.054 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:28.054 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194310)
00:00:28.054 [DEBUG] [xwayland/xwm.c:606] WM_NORMAL_HINTS (18)
00:00:28.054 [DEBUG] [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (4194310) [524x739+683,27]
00:00:28.067 [sway/desktop/transaction.c:414] Transaction 0x564103eba3d0 committing with 4 instructions
00:00:28.067 [sway/desktop/transaction.c:281] Applying transaction 0x564103eba3d0
00:00:28.070 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:28.071 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:28.072 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:28.097 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485780)
00:00:28.098 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485780)
00:00:28.112 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485783)
00:00:28.112 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485783)
00:00:28.117 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485786)
00:00:28.117 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485786)
00:00:28.117 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388690)
00:00:28.117 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388690)
00:00:28.118 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485789)
00:00:28.118 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485789)
00:00:28.119 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (8388652)
00:00:28.120 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485792)
00:00:28.120 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485792)
00:00:28.121 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485795)
00:00:28.121 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485795)
00:00:28.124 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485798)
00:00:28.124 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485798)
00:00:28.125 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485801)
00:00:28.125 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485801)
00:00:28.126 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485804)
00:00:28.126 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485804)
00:00:28.128 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485807)
00:00:28.128 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485807)
00:00:28.134 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (10485798)
00:00:28.138 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194390)
00:00:28.138 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194390)
00:00:28.140 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194342)
00:00:28.170 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (8388646)
00:00:28.170 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194336)
00:00:28.239 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (10485792)
00:00:28.286 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388711)
00:00:28.286 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (8388711)
00:00:28.286 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (8388652)
00:00:28.336 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485834)
00:00:28.336 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485834)
00:00:28.337 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194405)
00:00:28.337 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194405)
00:00:28.337 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (10485798)
00:00:28.338 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194342)
00:00:28.367 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (10485792)
00:00:28.443 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485849)
00:00:28.444 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (10485849)
00:00:28.446 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (10485798)
00:00:28.645 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291476)
00:00:28.646 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291476)
00:00:28.647 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291479)
00:00:28.647 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291479)
00:00:28.654 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291482)
00:00:28.654 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291482)
00:00:28.656 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291485)
00:00:28.656 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291485)
00:00:28.657 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291488)
00:00:28.657 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291488)
00:00:28.658 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291491)
00:00:28.658 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291491)
00:00:28.661 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291494)
00:00:28.662 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291494)
00:00:28.663 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291497)
00:00:28.663 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291497)
00:00:28.666 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291500)
00:00:28.666 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291500)
00:00:28.669 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291503)
00:00:28.669 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291503)
00:00:28.670 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291494)
00:00:28.726 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291488)
00:00:28.923 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291533)
00:00:28.924 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291533)
00:00:28.924 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291494)
00:00:28.945 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291488)
00:00:29.027 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=113 serial=163
00:00:29.057 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291548)
00:00:29.057 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291548)
00:00:29.058 [DEBUG] [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291494)
00:00:29.161 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=163 serial=164
00:00:29.451 [sway/desktop/transaction.c:414] Transaction 0x564103f01b10 committing with 4 instructions
00:00:29.451 [sway/desktop/transaction.c:281] Applying transaction 0x564103f01b10
00:00:29.451 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.464 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:29.464 [sway/input/cursor.c:865] denying request to set cursor from unfocused client
00:00:29.473 [sway/desktop/transaction.c:414] Transaction 0x564103ebc8d0 committing with 4 instructions
00:00:29.473 [sway/desktop/transaction.c:281] Applying transaction 0x564103ebc8d0
00:00:29.473 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.473 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:29.473 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.543 [sway/desktop/transaction.c:414] Transaction 0x564103f92eb0 committing with 4 instructions
00:00:29.544 [sway/desktop/transaction.c:281] Applying transaction 0x564103f92eb0
00:00:29.543 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.544 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:29.544 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.616 [sway/desktop/transaction.c:414] Transaction 0x564103f025d0 committing with 4 instructions
00:00:29.616 [sway/desktop/transaction.c:281] Applying transaction 0x564103f025d0
00:00:29.616 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.616 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: FocusOut (10)
00:00:29.616 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (926)
00:00:29.619 [ERROR] [backend/drm/atomic.c:36] DP-3: Atomic commit failed (pageflip): Invalid argument
00:00:30.049 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=1 grab_serial=163 serial=186
00:00:30.050 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:30.051 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 343 (_NET_WM_USER_TIME) for window 6291462
00:00:30.051 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291462)
00:00:30.132 [DEBUG] [types/seat/wlr_seat_pointer.c:382] button_count=0 grab_serial=186 serial=187
00:00:30.909 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: MappingNotify (34)
00:00:30.909 [DEBUG] [xwayland/xwm.c:1305] unhandled X11 event: MappingNotify (34)
00:00:30.944 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:30.944 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 343 (_NET_WM_USER_TIME) for window 6291462
00:00:31.270 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291462)
00:00:31.270 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 343 (_NET_WM_USER_TIME) for window 6291462
00:00:31.382 [DEBUG] [xwayland/xwm.c:829] XCB_CREATE_NOTIFY (6291587)
00:00:31.383 [sway/desktop/xwayland.c:633] New xwayland surface title='(null)' class='(null)'
00:00:31.387 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.387 [DEBUG] [xwayland/xwm.c:501] NET_WM_WINDOW_TYPE (2)
00:00:31.387 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291587)
00:00:31.387 [DEBUG] [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291587)
00:00:31.387 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.388 [sway/tree/view.c:401] View 0x564103f10e00 updated CSD to 0
00:00:31.387 [DEBUG] [xwayland/xwm.c:650] MOTIF_WM_HINTS (5)
00:00:31.387 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.387 [DEBUG] [xwayland/xwm.c:554] WM_HINTS (9)
00:00:31.387 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.388 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: vlc
00:00:31.388 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.390 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.390 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 291 (XdndAware) for window 6291587
00:00:31.390 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.390 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 336 (_NET_WM_ICON) for window 6291587
00:00:31.391 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.391 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-preferences
00:00:31.391 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.391 [DEBUG] [xwayland/xwm.c:412] XCB_ATOM_WM_WINDOW_ROLE: vlc-preferences
00:00:31.391 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.391 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Preferencias simples
00:00:31.391 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.391 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.392 [DEBUG] [xwayland/xwm.c:721] unhandled X11 property 335 (_NET_WM_ICON_NAME) for window 6291587
00:00:31.392 [DEBUG] [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291587)
00:00:31.392 [DEBUG] [xwayland/xwm.c:440] XCB_ATOM_WM_NAME: Preferencias simples
00:00:31.392 [DEBUG] [xwayland/xwm.c:968]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment