Skip to content

Instantly share code, notes, and snippets.

@kdryja
Created February 2, 2020 22:04
Show Gist options
  • Save kdryja/fedbb797aef48f8fea12af50c1d94e09 to your computer and use it in GitHub Desktop.
Save kdryja/fedbb797aef48f8fea12af50c1d94e09 to your computer and use it in GitHub Desktop.
sway/issue4926
# 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: it's recommended that you pass the final command to sway
set $menu "rofi -i -combi-modi run,emoji,drun,window -show combi"
# | xargs swaymsg exec --
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output * bg /home/kdryja/.config/sway/wallpaper.jpg fill
#
# Example configuration:
#
# output HDMI-A-1 resolution 1920x1080 position 1920,0
#
# You can get the names of your outputs by running: swaymsg -t get_outputs
### Idle configuration
#
# Example configuration:
#
exec swayidle -w \
timeout 300 'swaylock -f -c 000000' \
timeout 600 'swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"' \
before-sleep 'swaylock -f -c 000000'
#
# This will lock your screen after 300 seconds of inactivity, then turn off
# your displays after another 300 seconds, and turn your screens back on when
# resumed. It will also lock your screen before your computer goes to sleep.
### Input configuration
#
# Example configuration:
#
# input "2:14:SynPS/2_Synaptics_TouchPad" {
# dwt enabled
# tap enabled
# natural_scroll enabled
# middle_emulation enabled
# }
#
# You can get the names of your inputs by running: swaymsg -t get_inputs
# Read `man 5 sway-input` for more information about this section.
### Key bindings
#
# Basics:
#
# start a terminal
bindsym $mod+Return exec $term
# kill focused window
bindsym $mod+Shift+q kill
# start your launcher
bindsym $mod+d exec $menu
# Drag floating windows by holding down $mod and left mouse button.
# Resize them with right mouse button + $mod.
# Despite the name, also works for non-floating windows.
# Change normal to inverse to use left mouse button for resizing and right
# mouse button for dragging.
floating_modifier $mod normal
# reload the configuration file
bindsym $mod+Shift+c reload
# exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
#
# Moving around:
#
# Move your focus around
bindsym $mod+$left focus left
bindsym $mod+$down focus down
bindsym $mod+$up focus up
bindsym $mod+$right focus right
# or use $mod+[up|down|left|right]
# bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
# bindsym $mod+Right focus right
# _move_ the focused window with the same, but add Shift
bindsym $mod+Shift+$left move left
bindsym $mod+Shift+$down move down
bindsym $mod+Shift+$up move up
bindsym $mod+Shift+$right move right
# ditto, with arrow keys
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
#
# Workspaces:
#
# switch to workspace
bindsym $mod+1 workspace 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+Shift+v splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
bindsym XF86AudioMicMute exec --no-startup-id pulsemixer --id source-1 --toggle-mute
bindsym XF86AudioMute exec --no-startup-id pulsemixer --id sink-0 --toggle-mute
bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +5
bindsym XF86AudioLowerVolume exec --no-startup-id pulsemixer --change-volume -5
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
bindsym XF86MonBrightnessUp exec brightnessctl set +5%
bindsym Ctrl+Shift+L exec swaylock -f -c 000000
input * xkb_layout "gb"
bindsym XF86AudioPlay exec --no-startup-id playerctl play
bindsym XF86AudioPause exec --no-startup-id playerctl pause
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
bindsym XF86AudioNext exec --no-startup-id playerctl next
exec --no-startup-id 'nm-applet --indicator'
exec --no-startup-id 'redshift'
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
swaybar_command waybar
}
gaps inner 6
gaps outer 6
default_border pixel 2
hide_edge_borders smart
smart_gaps on
smart_borders on
seat * hide_cursor 8000
bindsym --release Print exec grim -g \"$(slurp)" - | wl-copy
include /etc/sway/config.d/*
# output HDMI-A-1 scale 0.7
output eDP-1 scale 1
bindsym $mod+Left workspace prev
bindsym $mod+Right workspace next
2020-02-02 22:02:15 - [sway/main.c:152] Linux thinkarch 5.4.15-arch1-1 #1 SMP PREEMPT Sun, 26 Jan 2020 09:48:50 +0000 x86_64 GNU/Linux
2020-02-02 22:02:15 - [sway/main.c:168] Contents of /etc/os-release:
2020-02-02 22:02:15 - [sway/main.c:152] NAME="Arch Linux"
2020-02-02 22:02:15 - [sway/main.c:152] PRETTY_NAME="Arch Linux"
2020-02-02 22:02:15 - [sway/main.c:152] ID=arch
2020-02-02 22:02:15 - [sway/main.c:152] BUILD_ID=rolling
2020-02-02 22:02:15 - [sway/main.c:152] ANSI_COLOR="0;36"
2020-02-02 22:02:15 - [sway/main.c:152] HOME_URL="https://www.archlinux.org/"
2020-02-02 22:02:15 - [sway/main.c:152] DOCUMENTATION_URL="https://wiki.archlinux.org/"
2020-02-02 22:02:15 - [sway/main.c:152] SUPPORT_URL="https://bbs.archlinux.org/"
2020-02-02 22:02:15 - [sway/main.c:152] BUG_REPORT_URL="https://bugs.archlinux.org/"
2020-02-02 22:02:15 - [sway/main.c:152] LOGO=archlinux
2020-02-02 22:02:15 - [sway/main.c:140] LD_LIBRARY_PATH=(null)
2020-02-02 22:02:15 - [sway/main.c:140] LD_PRELOAD=(null)
2020-02-02 22:02:15 - [sway/main.c:140] PATH=/home/kdryja/.poetry/bin:/home/kdryja/.pyenv/plugins/pyenv-virtualenv/shims:/home/kdryja/.pyenv/shims:/home/kdryja/.pyenv/bin:/home/kdryja/.nvm/versions/node/v12.11.1/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/var/lib/flatpak/exports/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/kdryja/.antigen/bundles/robbyrussell/oh-my-zsh/lib:/home/kdryja/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/git:/home/kdryja/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/gpg-agent:/home/kdryja/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/command-not-found:/home/kdryja/.antigen/bundles/zsh-users/zsh-syntax-highlighting:/home/kdryja/.antigen/bundles/zsh-users/zsh-autosuggestions:/home/kdryja/.antigen/bundles/lukechilds/zsh-nvm:/home/kdryja/.antigen/bundles/kdryja/zsh-poetry:/home/kdryja/.antigen/bundles/powerlevel9k/powerlevel9k:/home/kdryja/.local/bin
2020-02-02 22:02:15 - [sway/main.c:140] SWAYSOCK=(null)
2020-02-02 22:02:15 - [sway/server.c:40] Preparing Wayland server initialization
2020-02-02 22:02:15 - [backend/session/logind.c:821] Successfully loaded logind session
2020-02-02 22:02:15 - [backend/backend.c:157] Found 1 GPUs
2020-02-02 22:02:15 - [backend/drm/backend.c:159] Initializing DRM backend for /dev/dri/card0 (i915)
2020-02-02 22:02:15 - [backend/drm/drm.c:70] Using atomic DRM interface
2020-02-02 22:02:15 - [backend/drm/drm.c:255] Found 3 DRM CRTCs
2020-02-02 22:02:15 - [backend/drm/drm.c:176] Found 9 DRM planes
2020-02-02 22:02:15 - [render/egl.c:246] Using EGL 1.4
2020-02-02 22:02:15 - [render/egl.c:247] Supported EGL 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
2020-02-02 22:02:15 - [render/egl.c:248] EGL vendor: Mesa Project
2020-02-02 22:02:15 - [render/egl.c:127] 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
2020-02-02 22:02:15 - [render/egl.c:286] Failed to obtain a high priority context
2020-02-02 22:02:15 - [render/gles2/renderer.c:561] Using OpenGL ES 3.2 Mesa 19.3.3
2020-02-02 22:02:15 - [render/gles2/renderer.c:562] GL vendor: Intel Open Source Technology Center
2020-02-02 22:02:15 - [render/gles2/renderer.c:563] GL renderer: Mesa DRI Intel(R) UHD Graphics 620 (Kabylake GT2)
2020-02-02 22:02:15 - [render/gles2/renderer.c:564] 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_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_KHR_texture_compression_astc_ldr 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_framebuffer_fetch GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_INTEL_conservative_rasterization GL_INTEL_performance_query GL_ANDROID_extension_pack_es31a GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_copy_image GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_gpu_shader5 GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box GL_EXT_render_snorm GL_EXT_shader_io_blocks GL_EXT_texture_border_clamp GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_texture_norm16 GL_EXT_texture_view GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent 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_KHR_texture_compression_astc_sliced_3d GL_NV_fragment_shader_interlock 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_shader_framebuffer_fetch_non_coherent GL_EXT_texture_sRGB_R8 GL_EXT_texture_shadow_lod GL_MESA_framebuffer_flip_y GL_NV_compute_shader_derivatives GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod
2020-02-02 22:02:15 - [backend/noop/backend.c:51] Creating noop backend
2020-02-02 22:02:15 - [sway/main.c:366] Starting sway version 1.4
2020-02-02 22:02:15 - [sway/server.c:54] Initializing Wayland server
2020-02-02 22:02:15 - [types/wlr_idle.c:247] idle manager created
2020-02-02 22:02:15 - [sway/config.c:386] Loading config from /home/kdryja/.config/sway/config
2020-02-02 22:02:15 - [sway/config.c:795] Read line 1: # Default config for sway
2020-02-02 22:02:15 - [sway/config.c:795] Read line 2: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 4: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 5: # Read `man 5 sway` for a complete reference.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 6:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 7: ### Variables
2020-02-02 22:02:15 - [sway/config.c:795] Read line 8: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 9: # Logo key. Use Mod1 for Alt.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 10: set $mod Mod4
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $mod Mod4
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $mod Mod4
2020-02-02 22:02:15 - [sway/config.c:795] Read line 11: # Home row direction keys, like vim
2020-02-02 22:02:15 - [sway/config.c:795] Read line 12: set $left h
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $left h
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $left h
2020-02-02 22:02:15 - [sway/config.c:795] Read line 13: set $down j
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $down j
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $down j
2020-02-02 22:02:15 - [sway/config.c:795] Read line 14: set $up k
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $up k
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $up k
2020-02-02 22:02:15 - [sway/config.c:795] Read line 15: set $right l
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $right l
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $right l
2020-02-02 22:02:15 - [sway/config.c:795] Read line 16: # Your preferred terminal emulator
2020-02-02 22:02:15 - [sway/config.c:795] Read line 17: set $term kitty
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $term kitty
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $term kitty
2020-02-02 22:02:15 - [sway/config.c:795] Read line 18: # Your preferred application launcher
2020-02-02 22:02:15 - [sway/config.c:795] Read line 19: # Note: it's recommended that you pass the final command to sway
2020-02-02 22:02:15 - [sway/config.c:795] Read line 20: set $menu "rofi -i -combi-modi run,emoji,drun,window -show combi"
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: set $menu "rofi -i -combi-modi run,emoji,drun,window -show combi"
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: set $menu "rofi -i -combi-modi run,emoji,drun,window -show combi"
2020-02-02 22:02:15 - [sway/config.c:795] Read line 21: # | xargs swaymsg exec --
2020-02-02 22:02:15 - [sway/config.c:795] Read line 22:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 23: ### Output configuration
2020-02-02 22:02:15 - [sway/config.c:795] Read line 24: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 25: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
2020-02-02 22:02:15 - [sway/config.c:795] Read line 26: output * bg /home/kdryja/.config/sway/wallpaper.jpg fill
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: output * bg /home/kdryja/.config/sway/wallpaper.jpg fill
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: output * bg /home/kdryja/.config/sway/wallpaper.jpg fill
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bg /home/kdryja/.config/sway/wallpaper.jpg fill
2020-02-02 22:02:15 - [sway/config/output.c:219] Adding output * config
2020-02-02 22:02:15 - [sway/config/output.c:223] Config stored for output * (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/kdryja/.config/sway/wallpaper.jpg fill) (dpms 0) (max render time: -1)
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[0] = swaybg
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[1] = -o
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[2] = *
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[3] = -i
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[4] = /home/kdryja/.config/sway/wallpaper.jpg
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[5] = -m
2020-02-02 22:02:15 - [sway/config/output.c:728] spawn_swaybg cmd[6] = fill
2020-02-02 22:02:15 - [sway/config.c:795] Read line 27: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 28: # Example configuration:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 29: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 30: # output HDMI-A-1 resolution 1920x1080 position 1920,0
2020-02-02 22:02:15 - [sway/config.c:795] Read line 31: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 32: # You can get the names of your outputs by running: swaymsg -t get_outputs
2020-02-02 22:02:15 - [sway/config.c:795] Read line 33:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 34: ### Idle configuration
2020-02-02 22:02:15 - [sway/config.c:795] Read line 35: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 36: # Example configuration:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 37: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 42: 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'
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: 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'
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: 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'
2020-02-02 22:02:15 - [sway/config.c:839] Deferring command `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''
2020-02-02 22:02:15 - [sway/config.c:795] Read line 43: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 44: # This will lock your screen after 300 seconds of inactivity, then turn off
2020-02-02 22:02:15 - [sway/config.c:795] Read line 45: # your displays after another 300 seconds, and turn your screens back on when
2020-02-02 22:02:15 - [sway/config.c:795] Read line 46: # resumed. It will also lock your screen before your computer goes to sleep.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 47:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 48: ### Input configuration
2020-02-02 22:02:15 - [sway/config.c:795] Read line 49: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 50: # Example configuration:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 51: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 52: # input "2:14:SynPS/2_Synaptics_TouchPad" {
2020-02-02 22:02:15 - [sway/config.c:795] Read line 53: # dwt enabled
2020-02-02 22:02:15 - [sway/config.c:795] Read line 54: # tap enabled
2020-02-02 22:02:15 - [sway/config.c:795] Read line 55: # natural_scroll enabled
2020-02-02 22:02:15 - [sway/config.c:795] Read line 56: # middle_emulation enabled
2020-02-02 22:02:15 - [sway/config.c:795] Read line 57: # }
2020-02-02 22:02:15 - [sway/config.c:795] Read line 58: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 59: # You can get the names of your inputs by running: swaymsg -t get_inputs
2020-02-02 22:02:15 - [sway/config.c:795] Read line 60: # Read `man 5 sway-input` for more information about this section.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 61:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 62: ### Key bindings
2020-02-02 22:02:15 - [sway/config.c:795] Read line 63: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 64: # Basics:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 65: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 66: # start a terminal
2020-02-02 22:02:15 - [sway/config.c:795] Read line 67: bindsym $mod+Return exec $term
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Return exec $term
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Return exec kitty
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Return to command `exec kitty` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 68:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 69: # kill focused window
2020-02-02 22:02:15 - [sway/config.c:795] Read line 70: bindsym $mod+Shift+q kill
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+q kill
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+q kill
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 71:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 72: # start your launcher
2020-02-02 22:02:15 - [sway/config.c:795] Read line 73: bindsym $mod+d exec $menu
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+d exec $menu
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+d exec "rofi -i -combi-modi run,emoji,drun,window -show combi"
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+d to command `exec "rofi -i -combi-modi run,emoji,drun,window -show combi"` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 74:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 75: # Drag floating windows by holding down $mod and left mouse button.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 76: # Resize them with right mouse button + $mod.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 77: # Despite the name, also works for non-floating windows.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 78: # Change normal to inverse to use left mouse button for resizing and right
2020-02-02 22:02:15 - [sway/config.c:795] Read line 79: # mouse button for dragging.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 80: floating_modifier $mod normal
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: floating_modifier $mod normal
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: floating_modifier Mod4 normal
2020-02-02 22:02:15 - [sway/config.c:795] Read line 81:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 82: # reload the configuration file
2020-02-02 22:02:15 - [sway/config.c:795] Read line 83: bindsym $mod+Shift+c reload
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+c reload
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+c reload
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 84:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 85: # exit sway (logs you out of your Wayland session)
2020-02-02 22:02:15 - [sway/config.c:795] Read line 86: 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'
2020-02-02 22:02:15 - [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'
2020-02-02 22:02:15 - [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'
2020-02-02 22:02:15 - [sway/commands/bind.c:296] 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 '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 87: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 88: # Moving around:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 89: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 90: # Move your focus around
2020-02-02 22:02:15 - [sway/config.c:795] Read line 91: bindsym $mod+$left focus left
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+$left focus left
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+h focus left
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+h to command `focus left` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 92: bindsym $mod+$down focus down
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+$down focus down
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+j focus down
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+j to command `focus down` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 93: bindsym $mod+$up focus up
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+$up focus up
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+k focus up
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+k to command `focus up` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 94: bindsym $mod+$right focus right
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+$right focus right
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+l focus right
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+l to command `focus right` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 95: # or use $mod+[up|down|left|right]
2020-02-02 22:02:15 - [sway/config.c:795] Read line 96: # bindsym $mod+Left focus left
2020-02-02 22:02:15 - [sway/config.c:795] Read line 97: bindsym $mod+Down focus down
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Down focus down
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Down focus down
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Down to command `focus down` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 98: bindsym $mod+Up focus up
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Up focus up
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Up focus up
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Up to command `focus up` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 99: # bindsym $mod+Right focus right
2020-02-02 22:02:15 - [sway/config.c:795] Read line 100:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 101: # _move_ the focused window with the same, but add Shift
2020-02-02 22:02:15 - [sway/config.c:795] Read line 102: bindsym $mod+Shift+$left move left
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+$left move left
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+h move left
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 103: bindsym $mod+Shift+$down move down
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+$down move down
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+j move down
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 104: bindsym $mod+Shift+$up move up
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+$up move up
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+k move up
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 105: bindsym $mod+Shift+$right move right
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+$right move right
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+l move right
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 106: # ditto, with arrow keys
2020-02-02 22:02:15 - [sway/config.c:795] Read line 107: bindsym $mod+Shift+Left move left
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+Left move left
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Left move left
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 108: bindsym $mod+Shift+Down move down
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+Down move down
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Down move down
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 109: bindsym $mod+Shift+Up move up
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+Up move up
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Up move up
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 110: bindsym $mod+Shift+Right move right
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+Right move right
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+Right move right
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 111: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 112: # Workspaces:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 113: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 114: # switch to workspace
2020-02-02 22:02:15 - [sway/config.c:795] Read line 115: bindsym $mod+1 workspace 1
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+1 workspace 1
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+1 workspace 1
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+1 to command `workspace 1` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 116: bindsym $mod+2 workspace 2
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+2 workspace 2
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+2 workspace 2
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+2 to command `workspace 2` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 117: bindsym $mod+3 workspace 3
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+3 workspace 3
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+3 workspace 3
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+3 to command `workspace 3` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 118: bindsym $mod+4 workspace 4
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+4 workspace 4
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+4 workspace 4
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+4 to command `workspace 4` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 119: bindsym $mod+5 workspace 5
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+5 workspace 5
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+5 workspace 5
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+5 to command `workspace 5` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 120: bindsym $mod+6 workspace 6
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+6 workspace 6
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+6 workspace 6
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+6 to command `workspace 6` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 121: bindsym $mod+7 workspace 7
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+7 workspace 7
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+7 workspace 7
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+7 to command `workspace 7` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 122: bindsym $mod+8 workspace 8
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+8 workspace 8
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+8 workspace 8
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+8 to command `workspace 8` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 123: bindsym $mod+9 workspace 9
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+9 workspace 9
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+9 workspace 9
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+9 to command `workspace 9` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 124: bindsym $mod+0 workspace 10
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+0 workspace 10
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+0 workspace 10
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+0 to command `workspace 10` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 125: # move focused container to workspace
2020-02-02 22:02:15 - [sway/config.c:795] Read line 126: bindsym $mod+Shift+1 move container to workspace 1
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+1 move container to workspace 1
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+1 move container to workspace 1
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+1 to command `move container to workspace 1` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 127: bindsym $mod+Shift+2 move container to workspace 2
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+2 move container to workspace 2
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+2 move container to workspace 2
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+2 to command `move container to workspace 2` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 128: bindsym $mod+Shift+3 move container to workspace 3
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+3 move container to workspace 3
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+3 move container to workspace 3
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+3 to command `move container to workspace 3` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 129: bindsym $mod+Shift+4 move container to workspace 4
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+4 move container to workspace 4
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+4 move container to workspace 4
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+4 to command `move container to workspace 4` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 130: bindsym $mod+Shift+5 move container to workspace 5
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+5 move container to workspace 5
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+5 move container to workspace 5
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+5 to command `move container to workspace 5` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 131: bindsym $mod+Shift+6 move container to workspace 6
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+6 move container to workspace 6
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+6 move container to workspace 6
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+6 to command `move container to workspace 6` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 132: bindsym $mod+Shift+7 move container to workspace 7
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+7 move container to workspace 7
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+7 move container to workspace 7
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+7 to command `move container to workspace 7` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 133: bindsym $mod+Shift+8 move container to workspace 8
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+8 move container to workspace 8
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+8 move container to workspace 8
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+8 to command `move container to workspace 8` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 134: bindsym $mod+Shift+9 move container to workspace 9
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+9 move container to workspace 9
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+9 move container to workspace 9
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+9 to command `move container to workspace 9` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 135: bindsym $mod+Shift+0 move container to workspace 10
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+0 move container to workspace 10
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+0 move container to workspace 10
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+0 to command `move container to workspace 10` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 136: # Note: workspaces can have any name you want, not just numbers.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 137: # We just use 1-10 as the default.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 138: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 139: # Layout stuff:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 140: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 141: # You can "split" the current object of your focus with
2020-02-02 22:02:15 - [sway/config.c:795] Read line 142: # $mod+b or $mod+v, for horizontal and vertical splits
2020-02-02 22:02:15 - [sway/config.c:795] Read line 143: # respectively.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 144: bindsym $mod+Shift+v splith
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+v splith
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+v splith
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+v to command `splith` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 145: bindsym $mod+v splitv
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+v splitv
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+v splitv
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+v to command `splitv` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 146:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 147: # Switch the current container between different layout styles
2020-02-02 22:02:15 - [sway/config.c:795] Read line 148: bindsym $mod+s layout stacking
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+s layout stacking
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+s layout stacking
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 149: bindsym $mod+w layout tabbed
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+w layout tabbed
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+w layout tabbed
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 150: bindsym $mod+e layout toggle split
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+e layout toggle split
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+e layout toggle split
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 151:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 152: # Make the current focus fullscreen
2020-02-02 22:02:15 - [sway/config.c:795] Read line 153: bindsym $mod+f fullscreen
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+f fullscreen
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+f fullscreen
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 154:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 155: # Toggle the current focus between tiling and floating mode
2020-02-02 22:02:15 - [sway/config.c:795] Read line 156: bindsym $mod+Shift+space floating toggle
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+space floating toggle
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+space floating toggle
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 157:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 158: # Swap focus between the tiling area and the floating area
2020-02-02 22:02:15 - [sway/config.c:795] Read line 159: bindsym $mod+space focus mode_toggle
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+space focus mode_toggle
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+space focus mode_toggle
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 160:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 161: # move focus to the parent container
2020-02-02 22:02:15 - [sway/config.c:795] Read line 162: bindsym $mod+a focus parent
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+a focus parent
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+a focus parent
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+a to command `focus parent` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 163: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 164: # Scratchpad:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 165: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 166: # Sway has a "scratchpad", which is a bag of holding for windows.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 167: # You can send windows there and get them back later.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 168:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 169: # Move the currently focused window to the scratchpad
2020-02-02 22:02:15 - [sway/config.c:795] Read line 170: bindsym $mod+Shift+minus move scratchpad
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Shift+minus move scratchpad
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Shift+minus move scratchpad
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 171:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 172: # Show the next scratchpad window or hide the focused scratchpad window.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 173: # If there are multiple scratchpad windows, this command cycles through them.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 174: bindsym $mod+minus scratchpad show
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+minus scratchpad show
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+minus scratchpad show
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 175: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 176: # Resizing containers:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 177: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 178: mode "resize" {
2020-02-02 22:02:15 - [sway/config.c:849] Entering block 'mode "resize"'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 179: # left will shrink the containers width
2020-02-02 22:02:15 - [sway/config.c:795] Read line 180: # right will grow the containers width
2020-02-02 22:02:15 - [sway/config.c:795] Read line 181: # up will shrink the containers height
2020-02-02 22:02:15 - [sway/config.c:795] Read line 182: # down will grow the containers height
2020-02-02 22:02:15 - [sway/config.c:795] Read line 183: bindsym $left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym $left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym h resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym h resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound h to command `resize shrink width 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 184: bindsym $down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym $down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym j resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym j resize grow height 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound j to command `resize grow height 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 185: bindsym $up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym $up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym k resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym k resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound k to command `resize shrink height 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 186: bindsym $right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym $right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym l resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym l resize grow width 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound l to command `resize grow width 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 187:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 188: # ditto, with arrow keys
2020-02-02 22:02:15 - [sway/config.c:795] Read line 189: bindsym Left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Left resize shrink width 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 190: bindsym Down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Down resize grow height 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Down to command `resize grow height 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 191: bindsym Up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Up resize shrink height 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 192: bindsym Right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Right resize grow width 10px
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Right to command `resize grow width 10px` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 193:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 194: # return to default mode
2020-02-02 22:02:15 - [sway/config.c:795] Read line 195: bindsym Return mode "default"
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Return mode "default"
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Return mode "default"
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Return mode "default"
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Return to command `mode "default"` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 196: bindsym Escape mode "default"
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: mode "resize" bindsym Escape mode "default"
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: mode "resize" bindsym Escape mode "default"
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: bindsym Escape mode "default"
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Escape to command `mode "default"` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 197: }
2020-02-02 22:02:15 - [sway/config.c:866] Exiting block 'mode "resize"'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 198: bindsym $mod+r mode "resize"
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+r mode "resize"
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+r mode "resize"
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 199: bindsym XF86AudioMicMute exec --no-startup-id pulsemixer --id source-1 --toggle-mute
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioMicMute exec --no-startup-id pulsemixer --id source-1 --toggle-mute
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioMicMute exec --no-startup-id pulsemixer --id source-1 --toggle-mute
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioMicMute to command `exec --no-startup-id pulsemixer --id source-1 --toggle-mute` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 200: bindsym XF86AudioMute exec --no-startup-id pulsemixer --id sink-0 --toggle-mute
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioMute exec --no-startup-id pulsemixer --id sink-0 --toggle-mute
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioMute exec --no-startup-id pulsemixer --id sink-0 --toggle-mute
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioMute to command `exec --no-startup-id pulsemixer --id sink-0 --toggle-mute` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 201: bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +5
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +5
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +5
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioRaiseVolume to command `exec --no-startup-id pulsemixer --change-volume +5` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 202: bindsym XF86AudioLowerVolume exec --no-startup-id pulsemixer --change-volume -5
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioLowerVolume exec --no-startup-id pulsemixer --change-volume -5
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioLowerVolume exec --no-startup-id pulsemixer --change-volume -5
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioLowerVolume to command `exec --no-startup-id pulsemixer --change-volume -5` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 203: bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86MonBrightnessDown to command `exec brightnessctl set 5%-` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 204: bindsym XF86MonBrightnessUp exec brightnessctl set +5%
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86MonBrightnessUp exec brightnessctl set +5%
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86MonBrightnessUp exec brightnessctl set +5%
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86MonBrightnessUp to command `exec brightnessctl set +5%` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 205: bindsym Ctrl+Shift+L exec swaylock -f -c 000000
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym Ctrl+Shift+L exec swaylock -f -c 000000
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Ctrl+Shift+L exec swaylock -f -c 000000
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Ctrl+Shift+L to command `exec swaylock -f -c 000000` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 206: input * xkb_layout "gb"
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: input * xkb_layout "gb"
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: input * xkb_layout "gb"
2020-02-02 22:02:15 - [sway/commands/input.c:53] entering input block: *
2020-02-02 22:02:15 - [sway/config/input.c:15] new_input_config(*)
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: xkb_layout gb
2020-02-02 22:02:15 - [sway/commands/input/xkb_layout.c:18] set-xkb_layout for config: * layout: gb
2020-02-02 22:02:15 - [sway/config/input.c:15] new_input_config(temp)
2020-02-02 22:02:15 - [sway/config/input.c:333] Config stored for input *
2020-02-02 22:02:15 - [sway/config.c:1046] Translated keysyms using config for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 207:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 208: bindsym XF86AudioPlay exec --no-startup-id playerctl play
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioPlay exec --no-startup-id playerctl play
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioPlay exec --no-startup-id playerctl play
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioPlay to command `exec --no-startup-id playerctl play` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 209: bindsym XF86AudioPause exec --no-startup-id playerctl pause
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioPause exec --no-startup-id playerctl pause
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioPause exec --no-startup-id playerctl pause
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioPause to command `exec --no-startup-id playerctl pause` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 210: bindsym XF86AudioPrev exec --no-startup-id playerctl previous
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioPrev exec --no-startup-id playerctl previous
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioPrev exec --no-startup-id playerctl previous
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioPrev to command `exec --no-startup-id playerctl previous` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 211: bindsym XF86AudioNext exec --no-startup-id playerctl next
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym XF86AudioNext exec --no-startup-id playerctl next
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym XF86AudioNext exec --no-startup-id playerctl next
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound XF86AudioNext to command `exec --no-startup-id playerctl next` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 212:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 213: exec --no-startup-id 'nm-applet --indicator'
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: exec --no-startup-id 'nm-applet --indicator'
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: exec --no-startup-id 'nm-applet --indicator'
2020-02-02 22:02:15 - [sway/config.c:839] Deferring command `exec --no-startup-id 'nm-applet --indicator''
2020-02-02 22:02:15 - [sway/config.c:795] Read line 214: exec --no-startup-id 'redshift'
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: exec --no-startup-id 'redshift'
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: exec --no-startup-id 'redshift'
2020-02-02 22:02:15 - [sway/config.c:839] Deferring command `exec --no-startup-id 'redshift''
2020-02-02 22:02:15 - [sway/config.c:795] Read line 215:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 216:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 217: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 218: # Status Bar:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 219: #
2020-02-02 22:02:15 - [sway/config.c:795] Read line 220: # Read `man 5 sway-bar` for more information about this section.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 221: bar {
2020-02-02 22:02:15 - [sway/config.c:849] Entering block 'bar'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 222: swaybar_command waybar
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bar swaybar_command waybar
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bar swaybar_command waybar
2020-02-02 22:02:15 - [sway/commands/bar.c:92] Creating bar: bar-0
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: swaybar_command waybar
2020-02-02 22:02:15 - [sway/commands/bar/swaybar_command.c:13] Using custom swaybar command: waybar
2020-02-02 22:02:15 - [sway/config.c:795] Read line 223: }
2020-02-02 22:02:15 - [sway/config.c:866] Exiting block 'bar'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 224:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 225: gaps inner 6
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: gaps inner 6
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: gaps inner 6
2020-02-02 22:02:15 - [sway/config.c:795] Read line 226: gaps outer 6
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: gaps outer 6
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: gaps outer 6
2020-02-02 22:02:15 - [sway/config.c:795] Read line 227: default_border pixel 2
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: default_border pixel 2
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: default_border pixel 2
2020-02-02 22:02:15 - [sway/config.c:795] Read line 228: hide_edge_borders smart
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: hide_edge_borders smart
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: hide_edge_borders smart
2020-02-02 22:02:15 - [sway/config.c:795] Read line 229: smart_gaps on
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: smart_gaps on
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: smart_gaps on
2020-02-02 22:02:15 - [sway/config.c:795] Read line 230: smart_borders on
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: smart_borders on
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: smart_borders on
2020-02-02 22:02:15 - [sway/config.c:795] Read line 231: seat * hide_cursor 8000
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: seat * hide_cursor 8000
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: seat * hide_cursor 8000
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: hide_cursor 8000
2020-02-02 22:02:15 - [sway/config/seat.c:77] Adding seat * config
2020-02-02 22:02:15 - [sway/config/seat.c:81] Config stored for seat *
2020-02-02 22:02:15 - [sway/config.c:795] Read line 232: bindsym --release Print exec grim -g \"$(slurp)" - | wl-copy
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym --release Print exec grim -g \"$(slurp)" - | wl-copy
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym --release Print exec grim -g \"$(slurp)" - | wl-copy
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Print to command `exec grim -g "$(slurp)" - | wl-copy` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 233: include /etc/sway/config.d/*
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: include /etc/sway/config.d/*
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: include /etc/sway/config.d/*
2020-02-02 22:02:15 - [sway/config.c:386] Loading config from /etc/sway/config.d/50-systemd-user.conf
2020-02-02 22:02:15 - [sway/config.c:795] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
2020-02-02 22:02:15 - [sway/config.c:795] Read line 2: # See FS#63021
2020-02-02 22:02:15 - [sway/config.c:795] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
2020-02-02 22:02:15 - [sway/config.c:795] Read line 4:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 5: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/config.c:839] Deferring command `exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 7: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:15 - [sway/config.c:839] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 234:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 235: # output HDMI-A-1 scale 0.7
2020-02-02 22:02:15 - [sway/config.c:795] Read line 236: output eDP-1 scale 1
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: output eDP-1 scale 1
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: output eDP-1 scale 1
2020-02-02 22:02:15 - [sway/commands.c:423] Subcommand: scale 1
2020-02-02 22:02:15 - [sway/config/output.c:206] Adding non-wildcard output config
2020-02-02 22:02:15 - [sway/config/output.c:209] Merging on top of output * config
2020-02-02 22:02:15 - [sway/config/output.c:223] Config stored for output eDP-1 (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale 1.000000 subpixel unknown transform -1) (bg /home/kdryja/.config/sway/wallpaper.jpg fill) (dpms 0) (max render time: -1)
2020-02-02 22:02:15 - [sway/config.c:795] Read line 237:
2020-02-02 22:02:15 - [sway/config.c:795] Read line 238: bindsym $mod+Left workspace prev
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Left workspace prev
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Left workspace prev
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Left to command `workspace prev` for device '*'
2020-02-02 22:02:15 - [sway/config.c:795] Read line 239: bindsym $mod+Right workspace next
2020-02-02 22:02:15 - [sway/commands.c:372] Config command: bindsym $mod+Right workspace next
2020-02-02 22:02:15 - [sway/commands.c:392] After replacement: bindsym Mod4+Right workspace next
2020-02-02 22:02:15 - [sway/commands/bind.c:296] bindsym - Bound Mod4+Right to command `workspace next` for device '*'
2020-02-02 22:02:15 - [sway/server.c:178] Initializing Xwayland (lazy=1)
2020-02-02 22:02:15 - [sway/server.c:196] Starting backend on wayland display 'wayland-0'
2020-02-02 22:02:15 - [backend/drm/drm.c:1274] Scanning DRM connectors
2020-02-02 22:02:15 - [backend/drm/drm.c:1337] Found connector 'eDP-1'
2020-02-02 22:02:15 - [backend/drm/drm.c:1373] 'eDP-1' connected
2020-02-02 22:02:15 - [backend/drm/drm.c:1374] Current CRTC: 48
2020-02-02 22:02:15 - [backend/drm/drm.c:1379] Physical size: 310x170
2020-02-02 22:02:15 - [backend/drm/drm.c:1397] Detected modes:
2020-02-02 22:02:15 - [backend/drm/drm.c:1419] 2560x1440@59998 (preferred)
2020-02-02 22:02:15 - [backend/drm/drm.c:1337] Found connector 'DP-1'
2020-02-02 22:02:15 - [backend/drm/drm.c:1337] Found connector 'HDMI-A-1'
2020-02-02 22:02:15 - [backend/drm/drm.c:1337] Found connector 'DP-2'
2020-02-02 22:02:15 - [backend/drm/drm.c:1337] Found connector 'HDMI-A-2'
2020-02-02 22:02:15 - [backend/drm/drm.c:1106] Reallocating CRTCs
2020-02-02 22:02:15 - [backend/drm/drm.c:1117] State before reallocation:
2020-02-02 22:02:15 - [backend/drm/drm.c:1123] 'eDP-1' crtc=0 state=1 desired_enabled=1
2020-02-02 22:02:15 - [backend/drm/drm.c:1123] 'DP-1' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1123] 'HDMI-A-1' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1123] 'DP-2' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1123] 'HDMI-A-2' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1175] State after reallocation:
2020-02-02 22:02:15 - [backend/drm/drm.c:1182] 'eDP-1' crtc=0 state=1 desired_enabled=1
2020-02-02 22:02:15 - [backend/drm/drm.c:1182] 'DP-1' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1182] 'HDMI-A-1' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1182] 'DP-2' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1182] 'HDMI-A-2' crtc=-1 state=0 desired_enabled=0
2020-02-02 22:02:15 - [backend/drm/drm.c:1485] Requesting modeset for 'eDP-1'
2020-02-02 22:02:15 - [sway/desktop/output.c:871] New output 0x55c4289e48e0: eDP-1
2020-02-02 22:02:15 - [sway/config/output.c:337] Turning on output eDP-1
2020-02-02 22:02:15 - [sway/config/output.c:396] Committing output eDP-1
2020-02-02 22:02:15 - [backend/drm/drm.c:695] Modesetting 'eDP-1' with '2560x1440@59998 mHz'
2020-02-02 22:02:15 - [backend/drm/drm.c:591] Initializing renderer on connector 'eDP-1'
2020-02-02 22:02:15 - [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 24 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2020-02-02 22:02:15 - [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 34 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2020-02-02 22:02:15 - [GLES2] VS SIMD8 shader: 28 inst, 0 loops, 116 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 448 to 336 bytes.
2020-02-02 22:02:15 - [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 0 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 32 to 32 bytes.
2020-02-02 22:02:15 - [sway/tree/workspace.c:283] Workspace: Generating new workspace name for output eDP-1
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '1'
2020-02-02 22:02:15 - [sway/tree/workspace.c:274] Workspace: Found free name 1
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '2'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '3'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '4'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '5'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '6'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '7'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '8'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '9'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: '10'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: 'prev'
2020-02-02 22:02:15 - [sway/tree/workspace.c:218] Got valid workspace command for target: 'next'
2020-02-02 22:02:15 - [sway/tree/output.c:133] Creating default workspace 1
2020-02-02 22:02:15 - [sway/tree/workspace.c:63] Adding workspace 1 for output eDP-1
2020-02-02 22:02:15 - [sway/tree/arrange.c:263] Usable area for ws: 0x0@0,0
2020-02-02 22:02:15 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 0.000000
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors:
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5
2020-02-02 22:02:15 - [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:243] Loaded cursor theme 'default', available cursors:
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_up_arrow (1 images) 24x24+12,3
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] size_bdiag (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-link (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] progress (60 images) 24x24+4,3
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] pointer-move (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] wait (60 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] text (1 images) 24x24+11,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] pirate (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] nw-resize (1 images) 24x24+10,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dot_box_mask (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] right_side (1 images) 24x24+19,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] top_side (1 images) 24x24+13,6
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] left_tee (1 images) 24x24+6,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] e-resize (1 images) 24x24+19,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] left_ptr (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_left_arrow (1 images) 24x24+6,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] size_fdiag (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] hand (1 images) 24x24+8,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] left_ptr_watch (60 images) 24x24+4,3
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ne-resize (1 images) 24x24+15,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] bd_double_arrow (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] tcross (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] right_tee (1 images) 24x24+20,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] cell (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] size_hor (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-no-drop (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] alias (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] circle (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] grab (1 images) 24x24+11,7
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] cross (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] top_left_corner (1 images) 24x24+10,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] xterm (1 images) 24x24+11,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] right_ptr (1 images) 24x24+21,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_v_double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] icon (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] left_ptr_help (1 images) 24x24+12,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 00008160000006810000408080010102 (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ew-resize (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] s-resize (1 images) 24x24+13,18
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] copy (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] zoom-in (1 images) 24x24+11,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] hand1 (1 images) 24x24+11,7
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] bottom_left_corner (1 images) 24x24+10,15
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_h_double_arrow (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] all-scroll (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-move (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] draft_small (1 images) 24x24+21,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] X_cursor (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] fd_double_arrow (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] grabbing (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] link (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] n-resize (1 images) 24x24+13,6
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sw-resize (1 images) 24x24+10,15
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] draft_large (1 images) 24x24+21,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] watch (60 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] top_left_arrow (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-none (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] zoom-out (1 images) 24x24+11,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] w-resize (1 images) 24x24+6,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] no-drop (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] lr_angle (1 images) 24x24+20,19
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] not-allowed (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dotbox (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] hand2 (1 images) 24x24+8,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] bottom_tee (1 images) 24x24+12,19
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] pencil (1 images) 24x24+7,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ul_angle (1 images) 24x24+4,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] top_tee (1 images) 24x24+12,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] v_double_arrow (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_right_arrow (1 images) 24x24+19,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] bottom_side (1 images) 24x24+13,18
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-ask (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] nwse-resize (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] col-resize (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] vertical-text (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] help (1 images) 24x24+12,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] move (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] row-resize (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] plus (1 images) 24x24+10,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] context-menu (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] pointer (1 images) 24x24+8,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] top_right_corner (1 images) 24x24+15,10
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] crosshair (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] dnd-copy (1 images) 24x24+9,9
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ns-resize (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] question_arrow (1 images) 24x24+12,21
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] crossed_circle (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] diamond_cross (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] h_double_arrow (1 images) 24x24+12,12
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] size_all (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] sb_down_arrow (1 images) 24x24+12,19
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] target (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] bottom_right_corner (1 images) 24x24+15,15
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] fleur (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] size_ver (1 images) 24x24+12,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] default (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ll_angle (1 images) 24x24+4,19
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] nesw-resize (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] arrow (1 images) 24x24+4,4
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] cross_reverse (1 images) 24x24+11,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] se-resize (1 images) 24x24+15,15
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] left_side (1 images) 24x24+6,13
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] ur_angle (1 images) 24x24+20,5
2020-02-02 22:02:16 - [xcursor/wlr_xcursor.c:248] draped_box (1 images) 24x24+11,11
2020-02-02 22:02:16 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2020-02-02 22:02:16 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
2020-02-02 22:02:16 - [sway/tree/arrange.c:293] Arranging workspace '1' at 12.000000, 12.000000
2020-02-02 22:02:16 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
2020-02-02 22:02:16 - [sway/tree/arrange.c:293] Arranging workspace '1' at 12.000000, 12.000000
2020-02-02 22:02:16 - [sway/desktop/transaction.c:411] Transaction 0x55c428bd1070 committing with 2 instructions
2020-02-02 22:02:16 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428bd1070
2020-02-02 22:02:16 - [backend/libinput/backend.c:55] Initializing libinput
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Power Button [0:1]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '0:1:Power_Button'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '0:1:Power_Button')
2020-02-02 22:02:16 - [sway/input/input-manager.c:178] no fallback seat config - creating default
2020-02-02 22:02:16 - [sway/config/seat.c:64] Adding non-wildcard seat config
2020-02-02 22:02:16 - [sway/config/seat.c:67] Merging on top of seat * config
2020-02-02 22:02:16 - [sway/config/seat.c:81] Config stored for seat seat0
2020-02-02 22:02:16 - [sway/input/input-manager.c:470] applying seat config for seat seat0
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 0:1:Power_Button to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:779] Created keyboard group 0x55c428cdc350
2020-02-02 22:02:16 - [sway/input/keyboard.c:802] Adding keyboard 0:1:Power_Button to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Video Bus [0:6]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '0:6:Video_Bus'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '0:6:Video_Bus')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 0:6:Video_Bus to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:754] Adding keyboard 0:6:Video_Bus to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Lid Switch [0:5]
2020-02-02 22:02:16 - [backend/libinput/switch.c:20] Created switch for device Lid Switch
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '0:5:Lid_Switch'
2020-02-02 22:02:16 - [sway/input/libinput.c:251] config_libinput_switch('*' on '0:5:Lid_Switch')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 0:5:Lid_Switch to seat seat0
2020-02-02 22:02:16 - [sway/input/switch.c:18] Allocated switch for device
2020-02-02 22:02:16 - [sway/input/seat.c:622] Applying input config to 0:5:Lid_Switch
2020-02-02 22:02:16 - [sway/input/switch.c:95] Configured switch for device
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Sleep Button [0:3]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '0:3:Sleep_Button'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '0:3:Sleep_Button')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 0:3:Sleep_Button to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:754] Adding keyboard 0:3:Sleep_Button to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Integrated Camera: Integrated C [5075:22194]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '5075:22194:Integrated_Camera:_Integrated_C'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '5075:22194:Integrated_Camera:_Integrated_C')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 5075:22194:Integrated_Camera:_Integrated_C to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:754] Adding keyboard 5075:22194:Integrated_Camera:_Integrated_C to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH Mic [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH Headphone [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=3 [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=7 [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=8 [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=9 [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added HDA Intel PCH HDMI/DP,pcm=10 [0:0]
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added AT Translated Set 2 keyboard [1:1]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '1:1:AT_Translated_Set_2_keyboard'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '1:1:AT_Translated_Set_2_keyboard')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 1:1:AT_Translated_Set_2_keyboard to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:754] Adding keyboard 1:1:AT_Translated_Set_2_keyboard to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added ThinkPad Extra Buttons [6058:20564]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '6058:20564:ThinkPad_Extra_Buttons'
2020-02-02 22:02:16 - [sway/input/libinput.c:241] config_libinput_keyboard('*' on '6058:20564:ThinkPad_Extra_Buttons')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 6058:20564:ThinkPad_Extra_Buttons to seat seat0
2020-02-02 22:02:16 - [sway/input/keyboard.c:754] Adding keyboard 6058:20564:ThinkPad_Extra_Buttons to group 0x55c428cdc350
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added Synaptics TM3289-021 [1739:0]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '1739:0:Synaptics_TM3289-021'
2020-02-02 22:02:16 - [sway/input/libinput.c:190] config_libinput_pointer('*' on '1739:0:Synaptics_TM3289-021')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 1739:0:Synaptics_TM3289-021 to seat seat0
2020-02-02 22:02:16 - [sway/input/seat.c:622] Applying input config to 1739:0:Synaptics_TM3289-021
2020-02-02 22:02:16 - [GLES2] FS SIMD8 shader: 14 inst, 0 loops, 308 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2020-02-02 22:02:16 - [GLES2] FS SIMD16 shader: 14 inst, 0 loops, 322 cycles, 0:0 spills:fills, 2 sends, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2020-02-02 22:02:16 - [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 24 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.
2020-02-02 22:02:16 - [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 34 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 64 bytes.
2020-02-02 22:02:16 - [backend/libinput/events.c:94] Added TPPS/2 Elan TrackPoint [2:10]
2020-02-02 22:02:16 - [sway/input/input-manager.c:228] adding device: '2:10:TPPS/2_Elan_TrackPoint'
2020-02-02 22:02:16 - [sway/input/libinput.c:190] config_libinput_pointer('*' on '2:10:TPPS/2_Elan_TrackPoint')
2020-02-02 22:02:16 - [sway/input/seat.c:816] adding device 2:10:TPPS/2_Elan_TrackPoint to seat seat0
2020-02-02 22:02:16 - [sway/input/seat.c:622] Applying input config to 2:10:TPPS/2_Elan_TrackPoint
2020-02-02 22:02:16 - [backend/libinput/backend.c:101] libinput successfully initialized
2020-02-02 22:02:16 - [sway/config/bar.c:262] Invoking swaybar for bar id 'bar-0'
2020-02-02 22:02:16 - [sway/config/bar.c:254] Spawned swaybar bar-0
2020-02-02 22:02:16 - [sway/config.c:644] Running deferred commands
2020-02-02 22:02:16 - [sway/commands.c:255] Handling command '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''
2020-02-02 22:02:16 - [sway/commands/exec_always.c:46] Executing 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'
2020-02-02 22:02:16 - [sway/commands/exec_always.c:87] Child process created with pid 483136
2020-02-02 22:02:16 - [sway/tree/root.c:290] Recording workspace for process 483136
2020-02-02 22:02:16 - [sway/commands.c:255] Handling command 'exec --no-startup-id 'nm-applet --indicator''
2020-02-02 22:02:16 - [sway/commands/exec_always.c:27] exec switch '--no-startup-id' not supported, ignored.
2020-02-02 22:02:16 - [sway/commands/exec_always.c:46] Executing nm-applet --indicator
2020-02-02 22:02:16 - [sway/commands/exec_always.c:87] Child process created with pid 483138
2020-02-02 22:02:16 - [sway/tree/root.c:290] Recording workspace for process 483138
2020-02-02 22:02:16 - [sway/commands.c:255] Handling command 'exec --no-startup-id 'redshift''
2020-02-02 22:02:16 - [sway/commands/exec_always.c:27] exec switch '--no-startup-id' not supported, ignored.
2020-02-02 22:02:16 - [sway/commands/exec_always.c:46] Executing redshift
2020-02-02 22:02:16 - [sway/commands/exec_always.c:87] Child process created with pid 483140
2020-02-02 22:02:16 - [sway/tree/root.c:290] Recording workspace for process 483140
2020-02-02 22:02:16 - [sway/commands.c:255] Handling command 'exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK'
2020-02-02 22:02:16 - [sway/commands/exec_always.c:46] Executing systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:16 - [sway/commands/exec_always.c:87] Child process created with pid 483142
2020-02-02 22:02:16 - [sway/tree/root.c:290] Recording workspace for process 483142
2020-02-02 22:02:16 - [sway/commands.c:255] Handling command 'exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK'
2020-02-02 22:02:16 - [sway/commands/exec_always.c:46] Executing hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
2020-02-02 22:02:16 - [sway/commands/exec_always.c:87] Child process created with pid 483144
2020-02-02 22:02:16 - [sway/tree/root.c:290] Recording workspace for process 483144
2020-02-02 22:02:16 - [sway/server.c:207] Running compositor on wayland display 'wayland-0'
Trying location provider `geoclue2'...
2020-02-02 22:02:16 - [swaybg-1.0/main.c:300] Found config * for output eDP-1 (Unknown 0x0000 0x00000000)
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428a158c0 (res 0x55c428da1990)
2020-02-02 22:02:16 - [types/wlr_layer_shell_v1.c:433] new layer_surface 0x55c428a15be0 (res 0x55c428dbf120)
2020-02-02 22:02:16 - Waiting for initial location to become available...
[sway/desktop/layer_shell.c:501] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0
Got sleep lock: 11
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428dddf50 (res 0x55c428dc8660)
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428dde420 (res 0x55c428dcbbc0)
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428ddebd0 (res 0x55c428dca5d0)
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428ddf000 (res 0x55c428dc89c0)
Unknown option -b
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 72
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 74
2020-02-02 22:02:16 - [sway/ipc-server.c:220] Client 74 readable
2020-02-02 22:02:16 - [sway/ipc-server.c:937] Added IPC reply of type 0x2 to client 74 queue: {"success": true}
2020-02-02 22:02:16 - [sway/ipc-server.c:524] Client 74 writable
2020-02-02 22:02:16 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:16 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 12, "y": 12, "width": 2536, "height": 1416 }, "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2020-02-02 22:02:16 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 76
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 78
2020-02-02 22:02:16 - [sway/ipc-server.c:220] Client 78 readable
2020-02-02 22:02:16 - [sway/ipc-server.c:937] Added IPC reply of type 0x2 to client 78 queue: {"success": true}
2020-02-02 22:02:16 - [sway/ipc-server.c:524] Client 78 writable
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 80
2020-02-02 22:02:16 - [sway/ipc-server.c:154] Event on IPC listening socket
2020-02-02 22:02:16 - [sway/ipc-server.c:200] New client: fd 82
2020-02-02 22:02:16 - [sway/ipc-server.c:220] Client 82 readable
2020-02-02 22:02:16 - [sway/ipc-server.c:937] Added IPC reply of type 0x2 to client 82 queue: {"success": true}
2020-02-02 22:02:16 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:16 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:16 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 12, "y": 12, "width": 2536, "height": 1416 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } ] } ] }
2020-02-02 22:02:16 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:16 - [types/wlr_surface.c:607] New wlr_surface 0x55c428ddfb40 (res 0x55c428da05d0)
2020-02-02 22:02:16 - [types/wlr_layer_shell_v1.c:433] new layer_surface 0x55c428de1bb0 (res 0x55c428d77b20)
2020-02-02 22:02:16 - [sway/desktop/layer_shell.c:501] new layer surface: namespace waybar layer 2 anchor 2 size 0x30 margin 0,0,0,0
2020-02-02 22:02:16 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2020-02-02 22:02:16 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:16 - [sway/tree/arrange.c:293] Arranging workspace '1' at 12.000000, 42.000000
2020-02-02 22:02:16 - [sway/desktop/transaction.c:411] Transaction 0x55c428dbbfa0 committing with 1 instructions
2020-02-02 22:02:16 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428dbbfa0
2020-02-02 22:02:18 - [sway/commands/bind.c:610] running command for binding: exec "rofi -i -combi-modi run,emoji,drun,window -show combi"
2020-02-02 22:02:18 - [sway/commands.c:255] Handling command 'exec "rofi -i -combi-modi run,emoji,drun,window -show combi"'
2020-02-02 22:02:18 - [sway/commands/exec_always.c:46] Executing rofi -i -combi-modi run,emoji,drun,window -show combi
2020-02-02 22:02:18 - [sway/commands/exec_always.c:87] Child process created with pid 483183
2020-02-02 22:02:18 - [sway/tree/root.c:290] Recording workspace for process 483183
2020-02-02 22:02:18 - [xwayland/xwayland.c:89] WAYLAND_SOCKET=22 Xwayland :0 -rootless -terminate -listen 19 -listen 21 -wm 87
glamor: No eglstream capable devices found
2020-02-02 22:02:18 - [types/wlr_surface.c:607] New wlr_surface 0x55c428dbd320 (res 0x55c428dd1be0)
2020-02-02 22:02:18 - [xwayland/xwayland.c:356] sent SIGUSR1 to process 483125
2020-02-02 22:02:18 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:18 - [types/wlr_relative_pointer_v1.c:145] relative_pointer_v1 0x55c428dbd640 created for client 0x55c4289b9ec0
2020-02-02 22:02:18 - [xwayland/xwayland.c:228] Xserver is ready
2020-02-02 22:02:18 - [xwayland/xwm.c:1536] xfixes version: 5.0
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (2097153)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (2097154)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (2097154)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (2097155)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning: Unsupported maximum keycode 569, clipping.
> X11 cannot support keycodes above 255.
Errors from xkbcomp are not fatal to the X server
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:1301] unhandled X11 event: MappingNotify (34)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:1301] unhandled X11 event: MappingNotify (34)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (4194305)
2020-02-02 22:02:18 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
Mode combi is not enabled. I have enabled it for now.
Please consider adding combi to the list of enabled modi: modi: window,run,ssh,combi.
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: rofi
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: rofi Rofi
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/xwm.c:479] NET_WM_PID 483183
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:18 - [xwayland/xwm.c:722] unhandled X11 property 36 (WM_CLIENT_MACHINE) for window 4194305
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:942] XCB_MAP_NOTIFY (4194305)
2020-02-02 22:02:18 - [types/wlr_surface.c:607] New wlr_surface 0x55c428dfa030 (res 0x55c428dcfd80)
2020-02-02 22:02:18 - [xwayland/xwm.c:1385] New xwayland surface: 0x55c428dfa030
2020-02-02 22:02:18 - [xwayland/selection/selection.c:117] not handling selection events: no seat assigned to xwayland
2020-02-02 22:02:18 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:18 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: rofi Rofi
2020-02-02 22:02:18 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: rofi
2020-02-02 22:02:18 - [xwayland/xwm.c:479] NET_WM_PID 483183
2020-02-02 22:02:18 - [xwayland/xwm.c:1301] unhandled X11 event: MappingNotify (34)
2020-02-02 22:02:18 - [xwayland/xwm.c:1301] unhandled X11 event: MappingNotify (34)
2020-02-02 22:02:18 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:20 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:20 - [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194305)
2020-02-02 22:02:20 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:20 - [sway/tree/arrange.c:293] Arranging workspace '1' at 12.000000, 42.000000
2020-02-02 22:02:20 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:20 - [xwayland/xwm.c:1274] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 146, value 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (6291457)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 34 (WM_COMMAND) for window 6291457
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 36 (WM_CLIENT_MACHINE) for window 6291457
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: google-chrome-beta Google-chrome-beta
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 452 (WM_LOCALE_NAME) for window 6291457
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:20 - [sway/desktop/transaction.c:411] Transaction 0x55c428d87ac0 committing with 2 instructions
2020-02-02 22:02:20 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428d87ac0
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (6291459)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: google-chrome-beta
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291457)
[483222:483222:0202/220220.356932:ERROR:edid_parser.cc(102)] Too short EDID data: manufacturer id
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (8388610)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (8388610)
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (8388612)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (8388612)
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (8388618)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (8388620)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
[483261:483261:0202/220220.464113:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process.
2020-02-02 22:02:20 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (8388620)
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (4194305)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 452 (WM_LOCALE_NAME) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:502] NET_WM_WINDOW_TYPE (1)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: google-chrome-beta Google-chrome-beta
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:413] XCB_ATOM_WM_WINDOW_ROLE: browser
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 420 (_GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 338 (_NET_WM_SYNC_REQUEST_COUNTER) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 427 (_NET_WM_BYPASS_COMPOSITOR) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 332 (_NET_WM_ICON) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [sway/tree/view.c:343] View 0x55c428df87f0 updated CSD to 1
2020-02-02 22:02:20 - [xwayland/xwm.c:651] MOTIF_WM_HINTS (5)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 291 (XdndAware) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Untitled - Google Chrome
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Untitled - Google Chrome
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:20 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (4194311)
2020-02-02 22:02:20 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:923] XCB_MAP_REQUEST (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194311)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 394 (CHROMIUM_TIMESTAMP) for window 4194311
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 271 (WM_STATE) for window 4194305
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:942] XCB_MAP_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:20 - [types/wlr_surface.c:607] New wlr_surface 0x55c428df9020 (res 0x55c428dc0520)
2020-02-02 22:02:20 - [xwayland/xwm.c:1385] New xwayland surface: 0x55c428df9020
2020-02-02 22:02:20 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: google-chrome-beta Google-chrome-beta
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Untitled - Google Chrome
2020-02-02 22:02:20 - [xwayland/xwm.c:525] WM_PROTOCOLS (3)
2020-02-02 22:02:20 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:20 - [sway/tree/view.c:343] View 0x55c428df87f0 updated CSD to 1
2020-02-02 22:02:20 - [xwayland/xwm.c:651] MOTIF_WM_HINTS (5)
2020-02-02 22:02:20 - [xwayland/xwm.c:502] NET_WM_WINDOW_TYPE (1)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Untitled - Google Chrome
2020-02-02 22:02:20 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:20 - [sway/tree/root.c:249] Looking up workspace for pid 483222
2020-02-02 22:02:20 - [sway/ipc-server.c:334] Sending window::new event
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "new", "container": { "id": 5, "name": null, "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.0, "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": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:20 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:20 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:20 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e920 horizontally
2020-02-02 22:02:20 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 5, "name": "Untitled - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Untitled - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:20 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:20 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:20 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:20 - [sway/ipc-server.c:334] Sending window::focus event
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "focus", "container": { "id": 5, "name": "Untitled - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Untitled - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:20 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:20 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:20 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:20 - [sway/desktop/transaction.c:411] Transaction 0x55c428e57980 committing with 3 instructions
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291459)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 291 (XdndAware) for window 6291459
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:20 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "Untitled - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Untitled - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:20 - [sway/desktop/transaction.c:489] Transaction 0x55c428e57980 is ready
2020-02-02 22:02:20 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e57980
2020-02-02 22:02:20 - [sway/tree/container.c:1138] Container 0x55c428df99e0 entered output 0x55c4289a7620
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:20 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "Untitled - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Untitled - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:20 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "Untitled - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Untitled - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194311)
2020-02-02 22:02:20 - [xwayland/xwm.c:722] unhandled X11 property 394 (CHROMIUM_TIMESTAMP) for window 4194311
2020-02-02 22:02:20 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
[483222:483367:0202/220220.626211:ERROR:object_proxy.cc(632)] Failed to call method: org.freedesktop.DBus.Properties.Get: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files
[483222:483367:0202/220220.626418:ERROR:object_proxy.cc(632)] Failed to call method: org.freedesktop.UPower.GetDisplayDevice: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files
[483222:483367:0202/220220.626613:ERROR:object_proxy.cc(632)] Failed to call method: org.freedesktop.UPower.EnumerateDevices: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files
[483310:1:0202/220220.820665:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
[483310:1:0202/220220.821960:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
[483310:1:0202/220220.851231:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
[483310:1:0202/220220.855886:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
[483310:1:0202/220220.864355:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
[483310:1:0202/220220.868868:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response.
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: New Tab - Google Chrome
2020-02-02 22:02:20 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:20 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:20 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: New Tab - Google Chrome
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:20 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:20 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:20 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:21 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (4194316)
2020-02-02 22:02:21 - [sway/desktop/xwayland.c:606] New xwayland unmanaged surface
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:722] unhandled X11 property 332 (_NET_WM_ICON) for window 4194316
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:651] MOTIF_WM_HINTS (5)
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:722] unhandled X11 property 291 (XdndAware) for window 4194316
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 4194316
2020-02-02 22:02:21 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:942] XCB_MAP_NOTIFY (4194316)
2020-02-02 22:02:21 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194316)
2020-02-02 22:02:21 - [types/wlr_surface.c:607] New wlr_surface 0x55c428e6c790 (res 0x55c428e7b180)
2020-02-02 22:02:21 - [xwayland/xwm.c:1385] New xwayland surface: 0x55c428e6c790
2020-02-02 22:02:21 - [xwayland/xwm.c:525] WM_PROTOCOLS (3)
2020-02-02 22:02:21 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:21 - [xwayland/xwm.c:651] MOTIF_WM_HINTS (5)
2020-02-02 22:02:21 - [xwayland/xwm.c:502] NET_WM_WINDOW_TYPE (1)
2020-02-02 22:02:21 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:22 - [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194316)
2020-02-02 22:02:22 - [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (4194316)
2020-02-02 22:02:22 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:22 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:22 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:22 - [xwayland/xwm.c:722] unhandled X11 property 271 (WM_STATE) for window 4194316
2020-02-02 22:02:22 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194316)
2020-02-02 22:02:22 - [xwayland/xwm.c:722] unhandled X11 property 271 (WM_STATE) for window 4194316
2020-02-02 22:02:22 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (4194316)
2020-02-02 22:02:23 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:23 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 4194305
2020-02-02 22:02:23 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (6291464)
2020-02-02 22:02:23 - [sway/desktop/xwayland.c:606] New xwayland unmanaged surface
2020-02-02 22:02:24 - [xwayland/xwm.c:830] XCB_CREATE_NOTIFY (6291467)
2020-02-02 22:02:24 - [sway/desktop/xwayland.c:611] New xwayland surface title='(null)' class='(null)'
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:525] WM_PROTOCOLS (4)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 36 (WM_CLIENT_MACHINE) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 452 (WM_LOCALE_NAME) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 451 (WM_CLIENT_LEADER) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 335 (_NET_WM_USER_TIME_WINDOW) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 338 (_NET_WM_SYNC_REQUEST_COUNTER) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:502] NET_WM_WINDOW_TYPE (1)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:413] XCB_ATOM_WM_WINDOW_ROLE: GtkFileChooserDialog
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 461 (_NET_WM_OPAQUE_REGION) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 291 (XdndAware) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:466] XCB_ATOM_WM_TRANSIENT_FOR: 0x55c428df85a0
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:24 - [xwayland/xwm.c:876] XCB_CONFIGURE_REQUEST (6291467) [1891x1393+0,0]
2020-02-02 22:02:24 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 421 (_GTK_THEME_VARIANT) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 4194305
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:555] WM_HINTS (9)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:923] XCB_MAP_REQUEST (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:923] XCB_MAP_REQUEST (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 271 (WM_STATE) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:942] XCB_MAP_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 271 (WM_STATE) for window 6291467
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [types/wlr_surface.c:607] New wlr_surface 0x55c428e07690 (res 0x55c428e84350)
2020-02-02 22:02:24 - [xwayland/xwm.c:1385] New xwayland surface: 0x55c428e07690
2020-02-02 22:02:24 - [xwayland/xwm.c:390] XCB_ATOM_WM_CLASS: google-chrome-beta Google-chrome-beta
2020-02-02 22:02:24 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Open File
2020-02-02 22:02:24 - [xwayland/xwm.c:466] XCB_ATOM_WM_TRANSIENT_FOR: 0x55c428df85a0
2020-02-02 22:02:24 - [xwayland/xwm.c:525] WM_PROTOCOLS (4)
2020-02-02 22:02:24 - [xwayland/xwm.c:555] WM_HINTS (9)
2020-02-02 22:02:24 - [xwayland/xwm.c:607] WM_NORMAL_HINTS (18)
2020-02-02 22:02:24 - [xwayland/xwm.c:502] NET_WM_WINDOW_TYPE (1)
2020-02-02 22:02:24 - [xwayland/xwm.c:441] XCB_ATOM_WM_NAME: Open File
2020-02-02 22:02:24 - [xwayland/xwm.c:479] NET_WM_PID 483222
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:722] unhandled X11 property 461 (_NET_WM_OPAQUE_REGION) for window 6291467
2020-02-02 22:02:24 - [sway/tree/root.c:249] Looking up workspace for pid 483222
2020-02-02 22:02:24 - [sway/ipc-server.c:334] Sending window::new event
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "new", "container": { "id": 6, "name": null, "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.0, "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": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } }
2020-02-02 22:02:24 - [sway/ipc-server.c:334] Sending window::floating event
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "floating", "container": { "id": 6, "name": null, "rect": { "x": 332, "y": 14, "width": 1895, "height": 1419 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } }
2020-02-02 22:02:24 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 14, "width": 1895, "height": 1419 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } }
2020-02-02 22:02:24 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:24 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:24 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:24 - [sway/ipc-server.c:334] Sending window::focus event
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "focus", "container": { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 14, "width": 1895, "height": 1419 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } }
2020-02-02 22:02:24 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:24 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:24 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:24 - [sway/desktop/transaction.c:411] Transaction 0x55c428e07460 committing with 4 instructions
2020-02-02 22:02:24 - [sway/desktop/transaction.c:489] Transaction 0x55c428e07460 is ready
2020-02-02 22:02:24 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e07460
2020-02-02 22:02:24 - [sway/tree/container.c:1138] Container 0x55c428e080a0 entered output 0x55c4289a7620
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:24 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:24 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:24 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:24 - [GLES2] VS SIMD8 shader: 16 inst, 0 loops, 63 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 256 to 176 bytes.
2020-02-02 22:02:24 - [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 24 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2020-02-02 22:02:24 - [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 34 cycles, 0:0 spills:fills, 1 sends, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2020-02-02 22:02:24 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 6, 5 ], "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, "floating_nodes": [ { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 38, "width": 1895, "height": 1395 }, "focused": true, "focus": [ ], "border": "normal", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 332, "y": -16, "width": 1895, "height": 24 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:24 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:24 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 6, 5 ], "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, "floating_nodes": [ { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 38, "width": 1895, "height": 1395 }, "focused": true, "focus": [ ], "border": "normal", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 332, "y": -16, "width": 1895, "height": 24 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:24 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:24 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 6, 5 ], "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, "floating_nodes": [ { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 38, "width": 1895, "height": 1395 }, "focused": true, "focus": [ ], "border": "normal", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 332, "y": -16, "width": 1895, "height": 24 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:24 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:24 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:24 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 6, 5 ], "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, "floating_nodes": [ { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 38, "width": 1895, "height": 1395 }, "focused": true, "focus": [ ], "border": "normal", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 332, "y": -16, "width": 1895, "height": 24 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:24 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (6291467)
2020-02-02 22:02:25 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 6291467
2020-02-02 22:02:25 - [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291467)
2020-02-02 22:02:25 - [sway/ipc-server.c:334] Sending window::close event
2020-02-02 22:02:25 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "close", "container": { "id": 6, "name": "Open File", "rect": { "x": 332, "y": 38, "width": 1895, "height": 1395 }, "focused": true, "focus": [ ], "border": "normal", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 0.7449592752659574, "window_rect": { "x": 2, "y": 0, "width": 1891, "height": 1393 }, "deco_rect": { "x": 332, "y": -16, "width": 1895, "height": 24 }, "geometry": { "x": 0, "y": 0, "width": 1891, "height": 1393 }, "window": 6291467, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "floating_con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "Open File", "transient_for": 4194305, "window_role": "GtkFileChooserDialog" }, "nodes": [ ] } }
2020-02-02 22:02:25 - [sway/ipc-server.c:334] Sending window::focus event
2020-02-02 22:02:25 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "focus", "container": { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:25 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:25 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:25 - [sway/tree/arrange.c:77] Arranging 0x7ffde787edb0 horizontally
2020-02-02 22:02:25 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:25 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:25 - [sway/tree/arrange.c:77] Arranging 0x7ffde787edd0 horizontally
2020-02-02 22:02:25 - [sway/desktop/transaction.c:411] Transaction 0x55c428e082d0 committing with 4 instructions
2020-02-02 22:02:25 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e082d0
2020-02-02 22:02:25 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:25 - [xwayland/xwm.c:956] XCB_UNMAP_NOTIFY (6291467)
2020-02-02 22:02:25 - [xwayland/xwm.c:844] XCB_DESTROY_NOTIFY (6291467)
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:25 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:25 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:25 - [xwayland/xwm.c:1274] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 345, value 6291467
2020-02-02 22:02:25 - [xwayland/xwm.c:1274] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 346, value 6291467
2020-02-02 22:02:25 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:25 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:25 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:25 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:25 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:25 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:25 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:25 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:25 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:27 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:27 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:27 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:29 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:29 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:29 - [types/seat/wlr_seat_pointer.c:362] button_count=1 grab_serial=0 serial=54
2020-02-02 22:02:29 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:29 - [types/seat/wlr_seat_pointer.c:362] button_count=0 grab_serial=54 serial=55
2020-02-02 22:02:30 - [types/seat/wlr_seat_pointer.c:362] button_count=1 grab_serial=54 serial=56
2020-02-02 22:02:30 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:30 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:30 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:30 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:30 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:30 - [types/seat/wlr_seat_pointer.c:362] button_count=0 grab_serial=56 serial=57
2020-02-02 22:02:30 - [types/seat/wlr_seat_pointer.c:362] button_count=1 grab_serial=56 serial=58
2020-02-02 22:02:30 - [types/seat/wlr_seat_pointer.c:362] button_count=0 grab_serial=58 serial=59
2020-02-02 22:02:32 - [types/seat/wlr_seat_pointer.c:362] button_count=1 grab_serial=58 serial=60
2020-02-02 22:02:32 - [xwayland/xwm.c:1207] XCB_CLIENT_MESSAGE (4194305)
2020-02-02 22:02:32 - [types/seat/wlr_seat_pointer.c:362] button_count=0 grab_serial=60 serial=61
2020-02-02 22:02:33 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:33 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:33 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:34 - [sway/commands/bind.c:610] running command for binding: workspace 2
2020-02-02 22:02:34 - [sway/commands.c:255] Handling command 'workspace 2'
2020-02-02 22:02:34 - [sway/tree/workspace.c:63] Adding workspace 2 for output eDP-1
2020-02-02 22:02:34 - [sway/ipc-server.c:308] Sending workspace::init event
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "init", "old": null, "current": { "id": 7, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "init", "old": null, "current": { "id": 7, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/tree/workspace.c:476] Switching to workspace 0x55c428e07330:2
2020-02-02 22:02:34 - [sway/ipc-server.c:308] Sending workspace::focus event
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "focus", "old": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, "current": { "id": 7, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "focus", "old": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, "current": { "id": 7, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:34 - [sway/tree/arrange.c:293] Arranging workspace '2' at 12.000000, 42.000000
2020-02-02 22:02:34 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:34 - [sway/tree/arrange.c:293] Arranging workspace '2' at 12.000000, 42.000000
2020-02-02 22:02:34 - [sway/desktop/transaction.c:411] Transaction 0x55c428e89050 committing with 4 instructions
2020-02-02 22:02:34 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e89050
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 74 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:34 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": false, "visible": false }, { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 7, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } ] } ] }
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": false, "visible": false }, { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 7, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } ] } ] }
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:34 - [sway/commands/bind.c:610] running command for binding: workspace 1
2020-02-02 22:02:34 - [sway/commands.c:255] Handling command 'workspace 1'
2020-02-02 22:02:34 - [sway/tree/workspace.c:476] Switching to workspace 0x55c428a03a40:1
2020-02-02 22:02:34 - [sway/ipc-server.c:308] Sending workspace::focus event
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "focus", "old": { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] }, "current": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } }
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "focus", "old": { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] }, "current": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } }
2020-02-02 22:02:34 - [sway/ipc-server.c:334] Sending window::focus event
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "focus", "container": { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/tree/workspace.c:143] Destroying workspace '2'
2020-02-02 22:02:34 - [sway/ipc-server.c:308] Sending workspace::empty event
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "empty", "old": null, "current": { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "empty", "old": null, "current": { "id": 7, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:34 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:34 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:34 - [sway/tree/arrange.c:77] Arranging 0x7ffde787ea30 horizontally
2020-02-02 22:02:34 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:34 - [sway/tree/arrange.c:293] Arranging workspace '1' at 0.000000, 30.000000
2020-02-02 22:02:34 - [sway/tree/arrange.c:77] Arranging 0x7ffde787ea30 horizontally
2020-02-02 22:02:34 - [sway/desktop/transaction.c:411] Transaction 0x55c428e87520 committing with 4 instructions
2020-02-02 22:02:34 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e87520
2020-02-02 22:02:34 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 74 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": true, "visible": true } ]
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": true, "visible": true } ]
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:34 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:34 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "1", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": true, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:34 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:36 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (4194305)
2020-02-02 22:02:36 - [xwayland/xwm.c:722] unhandled X11 property 334 (_NET_WM_USER_TIME) for window 4194305
2020-02-02 22:02:37 - [sway/commands/bind.c:610] running command for binding: workspace 2
2020-02-02 22:02:37 - [sway/commands.c:255] Handling command 'workspace 2'
2020-02-02 22:02:37 - [sway/tree/workspace.c:63] Adding workspace 2 for output eDP-1
2020-02-02 22:02:37 - [sway/ipc-server.c:308] Sending workspace::init event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "init", "old": null, "current": { "id": 8, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "init", "old": null, "current": { "id": 8, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/tree/workspace.c:476] Switching to workspace 0x55c428e8c610:2
2020-02-02 22:02:37 - [sway/ipc-server.c:308] Sending workspace::focus event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "focus", "old": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, "current": { "id": 8, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "focus", "old": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, "current": { "id": 8, "name": "2", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:37 - [sway/tree/arrange.c:293] Arranging workspace '2' at 12.000000, 42.000000
2020-02-02 22:02:37 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:37 - [sway/tree/arrange.c:293] Arranging workspace '2' at 12.000000, 42.000000
2020-02-02 22:02:37 - [sway/desktop/transaction.c:411] Transaction 0x55c428e87520 committing with 4 instructions
2020-02-02 22:02:37 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e87520
2020-02-02 22:02:37 - [xwayland/xwm.c:968] XCB_PROPERTY_NOTIFY (924)
2020-02-02 22:02:37 - [xwayland/xwm.c:1301] unhandled X11 event: FocusOut (10)
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 74 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": false, "visible": false }, { "id": 8, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } ] } ] }
2020-02-02 22:02:37 - [sway/input/cursor.c:730] denying request to set cursor from unfocused client
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 72 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x1 to client 72 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "focused": false, "visible": false }, { "id": 8, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 72 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 12, "y": 42, "width": 2536, "height": 1386 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": null, "nodes": [ ] } ] } ] }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:37 - [sway/commands/bind.c:610] running command for binding: exec kitty
2020-02-02 22:02:37 - [sway/commands.c:255] Handling command 'exec kitty'
2020-02-02 22:02:37 - [sway/commands/exec_always.c:46] Executing kitty
2020-02-02 22:02:37 - [sway/commands/exec_always.c:87] Child process created with pid 483693
2020-02-02 22:02:37 - [sway/tree/root.c:290] Recording workspace for process 483693
2020-02-02 22:02:37 - [types/wlr_surface.c:607] New wlr_surface 0x55c428e76250 (res 0x55c428e068d0)
2020-02-02 22:02:37 - [types/wlr_surface.c:607] New wlr_surface 0x55c428e87710 (res 0x55c428e06960)
xkbcommon: ERROR: Couldn't read Compose file /usr/share/X11/locale/: No such device
[033 22:02:37.704191] [glfw error 65544]: Failed to create XKB compose table for locale
2020-02-02 22:02:37 - [types/xdg_shell/wlr_xdg_surface.c:458] new xdg_surface 0x55c428e83750 (res 0x55c428e8cb30)
2020-02-02 22:02:37 - [types/wlr_xdg_decoration_v1.c:201] new xdg_toplevel_decoration 0x55c428e769c0 (res 0x55c428e76aa0)
2020-02-02 22:02:37 - [sway/desktop/xdg_shell.c:497] New xdg_shell toplevel title='kitty' app_id='kitty'
2020-02-02 22:02:37 - [sway/tree/root.c:249] Looking up workspace for pid 483693
2020-02-02 22:02:37 - [sway/tree/root.c:256] found pid_workspace for pid 483693, workspace 2
2020-02-02 22:02:37 - [sway/ipc-server.c:334] Sending window::new event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "new", "container": { "id": 9, "name": null, "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.0, "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": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 9, "name": "kitty", "rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "focused": false, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 0.0, "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": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:37 - [sway/tree/arrange.c:293] Arranging workspace '2' at 0.000000, 30.000000
2020-02-02 22:02:37 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:37 - [sway/ipc-server.c:334] Sending window::focus event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "focus", "container": { "id": 9, "name": "kitty", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1410@0,30
2020-02-02 22:02:37 - [sway/tree/arrange.c:293] Arranging workspace '2' at 0.000000, 30.000000
2020-02-02 22:02:37 - [sway/tree/arrange.c:77] Arranging 0x7ffde787e9a0 horizontally
2020-02-02 22:02:37 - [sway/desktop/transaction.c:411] Transaction 0x55c428e89050 committing with 3 instructions
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "kitty", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "kitty", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "kitty", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "none", "current_border_width": 0, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:37 - [sway/desktop/transaction.c:489] Transaction 0x55c428e89050 is ready
2020-02-02 22:02:37 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428e89050
2020-02-02 22:02:37 - [sway/tree/container.c:1138] Container 0x55c428e89ba0 entered output 0x55c4289a7620
2020-02-02 22:02:37 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 9, "name": "zsh", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:37 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:37 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "zsh", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:37 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:38 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:38 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 9, "name": "kdryja@thinkarch: ~", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:38 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:38 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:38 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "kdryja@thinkarch: ~", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:38 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:39 - [sway/ipc-server.c:334] Sending window::title event
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "title", "container": { "id": 9, "name": "pkill sway", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/ipc-server.c:524] Client 82 writable
2020-02-02 22:02:39 - [sway/ipc-server.c:220] Client 80 readable
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x4 to client 80 queue: { "id": 1, "name": "root", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 3 ], "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, "floating_nodes": [ ], "sticky": false, "type": "root", "nodes": [ { "id": 2147483647, "name": "__i3", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 2147483646 ], "border": "none", "current_border_width": 0, "layout": "output", "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, "floating_nodes": [ ], "sticky": false, "type": "output", "nodes": [ { "id": 2147483646, "name": "__i3_scratch", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "type": "workspace" } ] }, { "id": 3, "name": "eDP-1", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": false, "focus": [ 8, 4 ], "border": "none", "current_border_width": 0, "layout": "output", "orientation": "none", "percent": 1.0, "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, "floating_nodes": [ ], "sticky": false, "type": "output", "active": true, "dpms": true, "primary": false, "make": "Unknown", "model": "0x0000", "serial": "0x00000000", "scale": 1.0, "scale_filter": "nearest", "transform": "normal", "current_workspace": "2", "modes": [ { "width": 2560, "height": 1440, "refresh": 59998 } ], "current_mode": { "width": 2560, "height": 1440, "refresh": 59998 }, "max_render_time": 0, "nodes": [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 5 ], "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[Google-chrome-beta]", "nodes": [ { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } ] }, { "id": 8, "name": "2", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ 9 ], "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": "eDP-1", "type": "workspace", "representation": "H[kitty]", "nodes": [ { "id": 9, "name": "pkill sway", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } ] } ] } ] }
2020-02-02 22:02:39 - [sway/ipc-server.c:524] Client 80 writable
2020-02-02 22:02:39 - [sway/main.c:406] Shutting down sway
2020-02-02 22:02:39 - [sway/ipc-server.c:334] Sending window::close event
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "close", "container": { "id": 5, "name": "New Tab - Google Chrome", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1410 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 1281, "height": 690 }, "window": 4194305, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483222, "app_id": null, "visible": false, "marks": [ ], "max_render_time": 0, "window_properties": { "class": "Google-chrome-beta", "instance": "google-chrome-beta", "title": "New Tab - Google Chrome", "transient_for": null, "window_role": "browser" }, "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/tree/workspace.c:143] Destroying workspace '1'
2020-02-02 22:02:39 - [sway/ipc-server.c:308] Sending workspace::empty event
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "empty", "old": null, "current": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[]", "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "empty", "old": null, "current": { "id": 4, "name": "1", "rect": { "x": 0, "y": 30, "width": 2560, "height": 1410 }, "focused": false, "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, "floating_nodes": [ ], "sticky": false, "num": 1, "output": "eDP-1", "type": "workspace", "representation": "H[]", "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/desktop/transaction.c:411] Transaction 0x55c428d87130 committing with 3 instructions
2020-02-02 22:02:39 - [sway/desktop/transaction.c:280] Applying transaction 0x55c428d87130
(EE) failed to read Wayland events: Connection reset by peer
2020-02-02 22:02:39 - [sway/desktop/layer_shell.c:331] Layer surface destroyed (wallpaper)
2020-02-02 22:02:39 - [sway/desktop/layer_shell.c:331] Layer surface destroyed (waybar)
2020-02-02 22:02:39 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2020-02-02 22:02:39 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
2020-02-02 22:02:39 - [sway/tree/arrange.c:293] Arranging workspace '2' at 0.000000, 0.000000
2020-02-02 22:02:39 - [sway/tree/arrange.c:77] Arranging 0x7ffde787ee80 horizontally
2020-02-02 22:02:39 - [sway/desktop/transaction.c:411] Transaction 0x55c428e88fc0 committing with 2 instructions
Gdk-Message: 22:02:39.748: Error reading events from display: Broken pipe
2020-02-02 22:02:39 - [sway/ipc-server.c:334] Sending window::close event
Gdk-Message: 22:02:39.748: Error reading events from display: Broken pipe
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000003 to client 82 queue: { "change": "close", "container": { "id": 9, "name": "pkill sway", "rect": { "x": 0, "y": 0, "width": 2560, "height": 1440 }, "focused": true, "focus": [ ], "border": "pixel", "current_border_width": 2, "layout": "none", "orientation": "none", "percent": 1.0, "window_rect": { "x": 0, "y": 2, "width": 2560, "height": 1440 }, "deco_rect": { "x": 0, "y": 0, "width": 0, "height": 0 }, "geometry": { "x": 0, "y": 0, "width": 2560, "height": 1410 }, "window": null, "urgent": false, "floating_nodes": [ ], "sticky": false, "type": "con", "fullscreen_mode": 0, "pid": 483693, "app_id": "kitty", "visible": true, "marks": [ ], "max_render_time": 0, "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/tree/arrange.c:263] Usable area for ws: 2560x1440@0,0
2020-02-02 22:02:39 - [sway/tree/arrange.c:293] Arranging workspace '2' at 12.000000, 12.000000
[033 22:02:39.749424] [glfw error 65544]: Wayland: fatal display error: Broken pipe
[483222:483222:0202/220239.756259:ERROR:chrome_browser_main_extra_parts_x11.cc(62)] X IO error received (X server probably went away)
[483261:483261:0202/220239.756283:ERROR:x11_util.cc(109)] X IO error received (X server probably went away)
2020-02-02 22:02:39 - [sway/tree/output.c:262] Disabling output 'eDP-1'
2020-02-02 22:02:39 - [sway/tree/workspace.c:143] Destroying workspace '2'
2020-02-02 22:02:39 - [sway/ipc-server.c:308] Sending workspace::empty event
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 74 queue: { "change": "empty", "old": null, "current": { "id": 8, "name": "2", "rect": { "x": 12, "y": 12, "width": 2536, "height": 1416 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": null, "type": "workspace", "representation": "H[]", "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/ipc-server.c:937] Added IPC reply of type 0x80000000 to client 82 queue: { "change": "empty", "old": null, "current": { "id": 8, "name": "2", "rect": { "x": 12, "y": 12, "width": 2536, "height": 1416 }, "focused": true, "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, "floating_nodes": [ ], "sticky": false, "num": 2, "output": null, "type": "workspace", "representation": "H[]", "nodes": [ ] } }
2020-02-02 22:02:39 - [sway/tree/output.c:283] Destroying output 'eDP-1'
2020-02-02 22:02:39 - [backend/drm/drm.c:1650] Emitting destruction signal for 'eDP-1'
2020-02-02 22:02:39 - [backend/drm/drm.c:1086] De-allocating CRTC 0 for output 'eDP-1'
2020-02-02 22:02:39 - [backend/drm/atomic.c:56] eDP-1: Atomic commit failed (modeset): Invalid argument
2020-02-02 22:02:39 - [backend/drm/atomic.c:62] eDP-1: Atomic commit without new changes failed (modeset): Invalid argument
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '0:1:Power_Button'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 0:1:Power_Button from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 0:1:Power_Button from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '0:6:Video_Bus'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 0:6:Video_Bus from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 0:6:Video_Bus from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '0:5:Lid_Switch'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 0:5:Lid_Switch from seat seat0
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '0:3:Sleep_Button'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 0:3:Sleep_Button from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 0:3:Sleep_Button from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '5075:22194:Integrated_Camera:_Integrated_C'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 5075:22194:Integrated_Camera:_Integrated_C from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 5075:22194:Integrated_Camera:_Integrated_C from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '1:1:AT_Translated_Set_2_keyboard'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 1:1:AT_Translated_Set_2_keyboard from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 1:1:AT_Translated_Set_2_keyboard from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '6058:20564:ThinkPad_Extra_Buttons'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 6058:20564:ThinkPad_Extra_Buttons from seat seat0
2020-02-02 22:02:39 - [sway/input/keyboard.c:676] Removing keyboard 6058:20564:ThinkPad_Extra_Buttons from group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/keyboard.c:682] Destroying empty keyboard group 0x55c428cdc350
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '1739:0:Synaptics_TM3289-021'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 1739:0:Synaptics_TM3289-021 from seat seat0
2020-02-02 22:02:39 - [sway/input/input-manager.c:196] removing device: '2:10:TPPS/2_Elan_TrackPoint'
2020-02-02 22:02:39 - [sway/input/seat.c:836] removing device 2:10:TPPS/2_Elan_TrackPoint from seat seat0
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 82 disconnected
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 80 disconnected
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 78 disconnected
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 76 disconnected
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 74 disconnected
2020-02-02 22:02:40 - [sway/ipc-server.c:554] IPC Client 72 disconnected
The Wayland connection experienced a fatal error: -1
Temperature adjustment failed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment