Skip to content

Instantly share code, notes, and snippets.

@jwhett
Last active August 26, 2022 12:46
Show Gist options
  • Save jwhett/69ceee8a0aa6179e768a9a34aebaa02c to your computer and use it in GitHub Desktop.
Save jwhett/69ceee8a0aa6179e768a9a34aebaa02c to your computer and use it in GitHub Desktop.
Sway Debugging Logs
# Read `man 5 sway` for a complete reference.
# Also check this out: https://fedoramagazine.org/setting-up-the-sway-window-manager-on-fedora/
#############
# 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 alacritty
# Your preferred application launcher
# Note: it's recommended that you pass the final command to sway
set $menu dmenu_path | dmenu | xargs swaymsg exec --
# Set a browser here
set $browser firefox
########################
# Output configuration #
########################
set $laptop eDP-1
# Support clamshell mode
bindswitch lid:on output $laptop disable
bindswitch lid:off output $laptop enable
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
output eDP-1 {
# Laptop
resolution 1920x1080
pos 0 1080
}
output DP-1 {
# Thinkvision
resolution 1920x1080
pos 0 0
}
output HDMI-A-2 {
# Acer
resolution 1920x1080
pos 1920 0
transform 270
}
## Idle configuration
# 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.
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'
#######################
# Input configuration #
#######################
input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" {
xkb_options ctrl:nocaps
}
input "1149:8257:Kensington_Kensington_Slimblade_Trackball" {
left_handed enabled
natural_scroll enabled
}
################
# 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
# start your launcher
bindsym $mod+Shift+f exec $browser
# lock the screen
bindsym F8 exec swaylock -f -c 000000
# 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+b splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
# When the status_command prints a new line to stdout, swaybar updates.
# The default just shows the current date and time.
status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
colors {
statusline #ffffff
background #323232
inactive_workspace #32323200 #32323200 #5c5c5c
}
}
include /etc/sway/config.d/*
2019-12-18 10:29:41 - [sway/main.c:151] Linux athena 5.3.15-300.fc31.x86_64 #1 SMP Thu Dec 5 15:04:01 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
2019-12-18 10:29:41 - [sway/main.c:167] Contents of /etc/os-release:
2019-12-18 10:29:41 - [sway/main.c:151] NAME=Fedora
2019-12-18 10:29:41 - [sway/main.c:151] VERSION="31 (Workstation Edition)"
2019-12-18 10:29:41 - [sway/main.c:151] ID=fedora
2019-12-18 10:29:41 - [sway/main.c:151] VERSION_ID=31
2019-12-18 10:29:41 - [sway/main.c:151] VERSION_CODENAME=""
2019-12-18 10:29:41 - [sway/main.c:151] PLATFORM_ID="platform:f31"
2019-12-18 10:29:41 - [sway/main.c:151] PRETTY_NAME="Fedora 31 (Workstation Edition)"
2019-12-18 10:29:41 - [sway/main.c:151] ANSI_COLOR="0;34"
2019-12-18 10:29:41 - [sway/main.c:151] LOGO=fedora-logo-icon
2019-12-18 10:29:41 - [sway/main.c:151] CPE_NAME="cpe:/o:fedoraproject:fedora:31"
2019-12-18 10:29:41 - [sway/main.c:151] HOME_URL="https://fedoraproject.org/"
2019-12-18 10:29:41 - [sway/main.c:151] DOCUMENTATION_URL="https://docs.fedoraproject.org/en-US/fedora/f31/system-administrators-guide/"
2019-12-18 10:29:41 - [sway/main.c:151] SUPPORT_URL="https://fedoraproject.org/wiki/Communicating_and_getting_help"
2019-12-18 10:29:41 - [sway/main.c:151] BUG_REPORT_URL="https://bugzilla.redhat.com/"
2019-12-18 10:29:41 - [sway/main.c:151] REDHAT_BUGZILLA_PRODUCT="Fedora"
2019-12-18 10:29:41 - [sway/main.c:151] REDHAT_BUGZILLA_PRODUCT_VERSION=31
2019-12-18 10:29:41 - [sway/main.c:151] REDHAT_SUPPORT_PRODUCT="Fedora"
2019-12-18 10:29:41 - [sway/main.c:151] REDHAT_SUPPORT_PRODUCT_VERSION=31
2019-12-18 10:29:41 - [sway/main.c:151] PRIVACY_POLICY_URL="https://fedoraproject.org/wiki/Legal:PrivacyPolicy"
2019-12-18 10:29:41 - [sway/main.c:151] VARIANT="Workstation Edition"
2019-12-18 10:29:41 - [sway/main.c:151] VARIANT_ID=workstation
2019-12-18 10:29:41 - [sway/main.c:167] Contents of /etc/redhat-release:
2019-12-18 10:29:41 - [sway/main.c:151] Fedora release 31 (Thirty One)
2019-12-18 10:29:41 - [sway/main.c:139] LD_LIBRARY_PATH=(null)
2019-12-18 10:29:41 - [sway/main.c:139] LD_PRELOAD=(null)
2019-12-18 10:29:41 - [sway/main.c:139] PATH=/home/jwhett/go/bin:/home/jwhett/.local/bin:/home/jwhett/bin:/home/jwhett/.npm-packages/bin:/home/jwhett/.nimble/bin:/usr/local/go/bin:/home/jwhett/.cargo/bin:/home/jwhett/.local/bin:/home/jwhett/bin:/usr/share/Modules/bin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin
2019-12-18 10:29:41 - [sway/main.c:139] SWAYSOCK=/run/user/1000/sway-ipc.1000.2413.sock
2019-12-18 10:29:41 - [sway/server.c:40] Preparing Wayland server initialization
2019-12-18 10:29:41 - [backend/wayland/backend.c:181] Creating wayland backend
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_shm v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_linux_dmabuf_v1 v3
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_drm v2
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_compositor v4
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_subcompositor v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_data_device_manager v3
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: gamma_control_manager v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_gamma_control_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: gtk_primary_selection_device_manager v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_output_manager_v1 v2
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: org_kde_kwin_idle v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_idle_inhibit_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_layer_shell_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_shell_v6 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: xdg_wm_base v2
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: org_kde_kwin_server_decoration_manager v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_decoration_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_relative_pointer_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_pointer_constraints_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wp_presentation v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_export_dmabuf_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_screencopy_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_data_control_manager_v1 v2
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_primary_selection_device_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwp_virtual_keyboard_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_input_inhibit_manager_v1 v1
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_seat v7
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_output v3
2019-12-18 10:29:41 - [backend/wayland/backend.c:63] Remote wayland global: wl_output v3
2019-12-18 10:29:41 - [backend/wayland/wl_seat.c:424] seat 0x55fed17eab20 offered pointer
2019-12-18 10:29:41 - [backend/wayland/wl_seat.c:437] seat 0x55fed17eab20 offered keyboard
2019-12-18 10:29:41 - [render/egl.c:172] Using EGL 1.4
2019-12-18 10:29:41 - [render/egl.c:173] 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_EXT_swap_buffers_with_damage 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_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_KHR_swap_buffers_with_damage 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 EGL_WL_create_wayland_buffer_from_image
2019-12-18 10:29:41 - [render/egl.c:174] EGL vendor: Mesa Project
2019-12-18 10:29:41 - [render/egl.c:117] Supported dmabuf buffer formats: 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
2019-12-18 10:29:41 - [render/gles2/renderer.c:546] Using OpenGL ES 3.2 Mesa 19.2.7
2019-12-18 10:29:41 - [render/gles2/renderer.c:547] GL vendor: Intel Open Source Technology Center
2019-12-18 10:29:41 - [render/gles2/renderer.c:548] 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_depth_clamp GL_EXT_texture_query_lod
2019-12-18 10:29:41 - [backend/noop/backend.c:51] Creating noop backend
2019-12-18 10:29:41 - [sway/main.c:362] Starting sway version 1.0
2019-12-18 10:29:41 - [sway/server.c:54] Initializing Wayland server
2019-12-18 10:29:41 - [types/wlr_idle.c:258] idle manager created
2019-12-18 10:29:41 - [types/wlr_idle_inhibit_v1.c:191] idle_inhibit manager created
2019-12-18 10:29:41 - [types/wlr_relative_pointer_v1.c:228] relative_pointer_v1 manager created
2019-12-18 10:29:41 - [wayland] unable to lock lockfile /run/user/1000/wayland-0.lock, maybe another compositor is running
2019-12-18 10:29:41 - [sway/config.c:391] Loading config from /home/jwhett/.config/sway/config
2019-12-18 10:29:41 - [sway/config.c:764] Read line 1: # Read `man 5 sway` for a complete reference.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 2: # Also check this out: https://fedoramagazine.org/setting-up-the-sway-window-manager-on-fedora/
2019-12-18 10:29:41 - [sway/config.c:764] Read line 3:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 4: #############
2019-12-18 10:29:41 - [sway/config.c:764] Read line 5: # Variables #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 6: #############
2019-12-18 10:29:41 - [sway/config.c:764] Read line 7:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 8: # Logo key. Use Mod1 for Alt.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 9: set $mod Mod4
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $mod Mod4
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $mod Mod4
2019-12-18 10:29:41 - [sway/config.c:764] Read line 10:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 11: # Home row direction keys, like vim
2019-12-18 10:29:41 - [sway/config.c:764] Read line 12: set $left h
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $left h
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $left h
2019-12-18 10:29:41 - [sway/config.c:764] Read line 13: set $down j
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $down j
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $down j
2019-12-18 10:29:41 - [sway/config.c:764] Read line 14: set $up k
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $up k
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $up k
2019-12-18 10:29:41 - [sway/config.c:764] Read line 15: set $right l
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $right l
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $right l
2019-12-18 10:29:41 - [sway/config.c:764] Read line 16:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 17: # Your preferred terminal emulator
2019-12-18 10:29:41 - [sway/config.c:764] Read line 18: set $term alacritty
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $term alacritty
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $term alacritty
2019-12-18 10:29:41 - [sway/config.c:764] Read line 19:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 20: # Your preferred application launcher
2019-12-18 10:29:41 - [sway/config.c:764] Read line 21: # Note: it's recommended that you pass the final command to sway
2019-12-18 10:29:41 - [sway/config.c:764] Read line 22: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:29:41 - [sway/config.c:764] Read line 23:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 24: # Set a browser here
2019-12-18 10:29:41 - [sway/config.c:764] Read line 25: set $browser firefox
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $browser firefox
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $browser firefox
2019-12-18 10:29:41 - [sway/config.c:764] Read line 26:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 27: ########################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 28: # Output configuration #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 29: ########################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 30:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 31: set $laptop eDP-1
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: set $laptop eDP-1
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: set $laptop eDP-1
2019-12-18 10:29:41 - [sway/config.c:764] Read line 32:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 33: # Support clamshell mode
2019-12-18 10:29:41 - [sway/config.c:764] Read line 34: bindswitch --reload lid:on output $laptop disable
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindswitch --reload lid:on output $laptop disable
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindswitch)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindswitch --reload lid:on output eDP-1 disable
2019-12-18 10:29:41 - [sway/config.c:797] Error on line 34 'bindswitch --reload lid:on output $laptop disable': Invalid bindswitch command (expected binding with the form <switch>:<state>) (/home/jwhett/.config/sway/config)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 35: bindswitch --reload lid:off output $laptop enable
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindswitch --reload lid:off output $laptop enable
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindswitch)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindswitch --reload lid:off output eDP-1 enable
2019-12-18 10:29:41 - [sway/config.c:797] Error on line 35 'bindswitch --reload lid:off output $laptop enable': Invalid bindswitch command (expected binding with the form <switch>:<state>) (/home/jwhett/.config/sway/config)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 36:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 37: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 38: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bg)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bg)
2019-12-18 10:29:41 - [sway/config/output.c:189] Adding output * config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output * (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[0] = swaybg
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[1] = -o
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[2] = *
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[3] = -i
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[4] = /home/jwhett/Pictures/Wallpapers/pinkfloyd.png
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[5] = -m
2019-12-18 10:29:41 - [sway/config/output.c:607] spawn_swaybg cmd[6] = fill
2019-12-18 10:29:41 - [sway/config.c:764] Read line 39:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 40: output eDP-1 {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'output eDP-1'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 41: # Laptop
2019-12-18 10:29:41 - [sway/config.c:764] Read line 42: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output eDP-1 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output eDP-1 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:29:41 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output eDP-1 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 43: pos 0 1080
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output eDP-1 pos 0 1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output eDP-1 pos 0 1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: pos 0 1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output eDP-1 (enabled: -1) (1920x1080@-1.000000Hz position 0,1080 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 44: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'output eDP-1'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 45:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 46: output DP-1 {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'output DP-1'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 47: # Thinkvision
2019-12-18 10:29:41 - [sway/config.c:764] Read line 48: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output DP-1 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output DP-1 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:29:41 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output DP-1 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 49: pos 0 0
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output DP-1 pos 0 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output DP-1 pos 0 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: pos 0 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output DP-1 (enabled: -1) (1920x1080@-1.000000Hz position 0,0 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 50: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'output DP-1'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 51:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 52: output HDMI-A-2 {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'output HDMI-A-2'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 53: # Acer
2019-12-18 10:29:41 - [sway/config.c:764] Read line 54: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output HDMI-A-2 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output HDMI-A-2 resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:29:41 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:29:41 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 55: pos 1920 0
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output HDMI-A-2 pos 1920 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output HDMI-A-2 pos 1920 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: pos 1920 0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:29:41 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position 1920,0 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 56: transform 270
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: output HDMI-A-2 transform 270
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: output HDMI-A-2 transform 270
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(transform)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: transform 270
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(transform)
2019-12-18 10:29:41 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:29:41 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position 1920,0 scale -1.000000 subpixel unknown transform 3) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 57: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'output HDMI-A-2'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 58:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 59: ## Idle configuration
2019-12-18 10:29:41 - [sway/config.c:764] Read line 60: # This will lock your screen after 300 seconds of inactivity, then turn off
2019-12-18 10:29:41 - [sway/config.c:764] Read line 61: # your displays after another 300 seconds, and turn your screens back on when
2019-12-18 10:29:41 - [sway/config.c:764] Read line 62: # resumed. It will also lock your screen before your computer goes to sleep.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 67: 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'
2019-12-18 10:29:41 - [sway/commands.c:362] 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'
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(exec)
2019-12-18 10:29:41 - [sway/commands.c:382] 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'
2019-12-18 10:29:41 - [sway/config.c:808] 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''
2019-12-18 10:29:41 - [sway/config.c:764] Read line 68:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 69:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 70:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 71: #######################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 72: # Input configuration #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 73: #######################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 74:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 75: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 76: xkb_options ctrl:nocaps
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" xkb_options ctrl:nocaps
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" xkb_options ctrl:nocaps
2019-12-18 10:29:41 - [sway/commands/input.c:65] entering input block: 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle
2019-12-18 10:29:41 - [sway/config/input.c:14] new_input_config(1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(xkb_options)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: xkb_options ctrl:nocaps
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(xkb_options)
2019-12-18 10:29:41 - [sway/commands/input/xkb_options.c:19] set-xkb_options for config: 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle options: ctrl:nocaps
2019-12-18 10:29:41 - [sway/config/input.c:193] Adding non-wildcard input config
2019-12-18 10:29:41 - [sway/config/input.c:210] Config stored for input 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle
2019-12-18 10:29:41 - [sway/config.c:764] Read line 77: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 78:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 79: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'input "1149:8257:Kensington_Kensington_Slimblade_Trackball"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 80: left_handed enabled
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" left_handed enabled
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" left_handed enabled
2019-12-18 10:29:41 - [sway/commands/input.c:65] entering input block: 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:29:41 - [sway/config/input.c:14] new_input_config(1149:8257:Kensington_Kensington_Slimblade_Trackball)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(left_handed)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: left_handed enabled
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(left_handed)
2019-12-18 10:29:41 - [sway/config/input.c:193] Adding non-wildcard input config
2019-12-18 10:29:41 - [sway/config/input.c:210] Config stored for input 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:29:41 - [sway/config.c:764] Read line 81: natural_scroll enabled
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" natural_scroll enabled
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" natural_scroll enabled
2019-12-18 10:29:41 - [sway/commands/input.c:65] entering input block: 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:29:41 - [sway/config/input.c:14] new_input_config(1149:8257:Kensington_Kensington_Slimblade_Trackball)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(natural_scroll)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: natural_scroll enabled
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(natural_scroll)
2019-12-18 10:29:41 - [sway/config/input.c:187] Merging on top of existing input config
2019-12-18 10:29:41 - [sway/config/input.c:210] Config stored for input 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:29:41 - [sway/config.c:764] Read line 82: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'input "1149:8257:Kensington_Kensington_Slimblade_Trackball"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 83:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 84: ################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 85: # Key bindings #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 86: ################
2019-12-18 10:29:41 - [sway/config.c:764] Read line 87:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 88: ## Basics:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 89: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 90: # start a terminal
2019-12-18 10:29:41 - [sway/config.c:764] Read line 91: bindsym $mod+Return exec $term
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Return exec $term
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Return exec alacritty
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Return to command `exec alacritty` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 92:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 93: # kill focused window
2019-12-18 10:29:41 - [sway/config.c:764] Read line 94: bindsym $mod+Shift+q kill
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+q kill
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+q kill
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 95:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 96: # start your launcher
2019-12-18 10:29:41 - [sway/config.c:764] Read line 97: bindsym $mod+d exec $menu
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+d exec $menu
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 98:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 99: # start your launcher
2019-12-18 10:29:41 - [sway/config.c:764] Read line 100: bindsym $mod+Shift+f exec $browser
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+f exec $browser
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+f exec firefox
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+f to command `exec firefox` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 101:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 102: # lock the screen
2019-12-18 10:29:41 - [sway/config.c:764] Read line 103: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound F8 to command `exec swaylock -f -c 000000` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 104:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 105: # Drag floating windows by holding down $mod and left mouse button.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 106: # Resize them with right mouse button + $mod.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 107: # Despite the name, also works for non-floating windows.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 108: # Change normal to inverse to use left mouse button for resizing and right
2019-12-18 10:29:41 - [sway/config.c:764] Read line 109: # mouse button for dragging.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 110: floating_modifier $mod normal
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: floating_modifier $mod normal
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(floating_modifier)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: floating_modifier Mod4 normal
2019-12-18 10:29:41 - [sway/config.c:764] Read line 111:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 112: # reload the configuration file
2019-12-18 10:29:41 - [sway/config.c:764] Read line 113: bindsym $mod+Shift+c reload
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+c reload
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+c reload
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 114:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 115: # exit sway (logs you out of your Wayland session)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 116: 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'
2019-12-18 10:29:41 - [sway/commands.c:362] 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'
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] 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'
2019-12-18 10:29:41 - [sway/commands/bind.c:288] 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 '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 117:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 118: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 119: # Moving around:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 120: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 121: # Move your focus around
2019-12-18 10:29:41 - [sway/config.c:764] Read line 122: bindsym $mod+$left focus left
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+$left focus left
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+h focus left
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+h to command `focus left` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 123: bindsym $mod+$down focus down
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+$down focus down
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+j focus down
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+j to command `focus down` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 124: bindsym $mod+$up focus up
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+$up focus up
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+k focus up
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+k to command `focus up` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 125: bindsym $mod+$right focus right
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+$right focus right
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+l focus right
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+l to command `focus right` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 126: # or use $mod+[up|down|left|right]
2019-12-18 10:29:41 - [sway/config.c:764] Read line 127: bindsym $mod+Left focus left
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Left focus left
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Left focus left
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Left to command `focus left` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 128: bindsym $mod+Down focus down
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Down focus down
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Down focus down
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Down to command `focus down` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 129: bindsym $mod+Up focus up
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Up focus up
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Up focus up
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Up to command `focus up` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 130: bindsym $mod+Right focus right
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Right focus right
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Right focus right
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Right to command `focus right` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 131:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 132: # _move_ the focused window with the same, but add Shift
2019-12-18 10:29:41 - [sway/config.c:764] Read line 133: bindsym $mod+Shift+$left move left
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$left move left
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+h move left
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 134: bindsym $mod+Shift+$down move down
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$down move down
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+j move down
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 135: bindsym $mod+Shift+$up move up
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$up move up
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+k move up
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 136: bindsym $mod+Shift+$right move right
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$right move right
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+l move right
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 137: # ditto, with arrow keys
2019-12-18 10:29:41 - [sway/config.c:764] Read line 138: bindsym $mod+Shift+Left move left
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Left move left
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Left move left
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 139: bindsym $mod+Shift+Down move down
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Down move down
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Down move down
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 140: bindsym $mod+Shift+Up move up
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Up move up
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Up move up
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 141: bindsym $mod+Shift+Right move right
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Right move right
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Right move right
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 142:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 143: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 144: # Workspaces:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 145: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 146: # switch to workspace
2019-12-18 10:29:41 - [sway/config.c:764] Read line 147: bindsym $mod+1 workspace 1
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+1 workspace 1
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+1 workspace 1
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+1 to command `workspace 1` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 148: bindsym $mod+2 workspace 2
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+2 workspace 2
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+2 workspace 2
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+2 to command `workspace 2` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 149: bindsym $mod+3 workspace 3
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+3 workspace 3
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+3 workspace 3
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+3 to command `workspace 3` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 150: bindsym $mod+4 workspace 4
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+4 workspace 4
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+4 workspace 4
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+4 to command `workspace 4` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 151: bindsym $mod+5 workspace 5
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+5 workspace 5
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+5 workspace 5
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+5 to command `workspace 5` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 152: bindsym $mod+6 workspace 6
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+6 workspace 6
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+6 workspace 6
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+6 to command `workspace 6` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 153: bindsym $mod+7 workspace 7
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+7 workspace 7
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+7 workspace 7
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+7 to command `workspace 7` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 154: bindsym $mod+8 workspace 8
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+8 workspace 8
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+8 workspace 8
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+8 to command `workspace 8` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 155: bindsym $mod+9 workspace 9
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+9 workspace 9
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+9 workspace 9
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+9 to command `workspace 9` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 156: bindsym $mod+0 workspace 10
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+0 workspace 10
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+0 workspace 10
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+0 to command `workspace 10` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 157: # move focused container to workspace
2019-12-18 10:29:41 - [sway/config.c:764] Read line 158: bindsym $mod+Shift+1 move container to workspace 1
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+1 move container to workspace 1
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+1 move container to workspace 1
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+1 to command `move container to workspace 1` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 159: bindsym $mod+Shift+2 move container to workspace 2
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+2 move container to workspace 2
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+2 move container to workspace 2
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+2 to command `move container to workspace 2` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 160: bindsym $mod+Shift+3 move container to workspace 3
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+3 move container to workspace 3
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+3 move container to workspace 3
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+3 to command `move container to workspace 3` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 161: bindsym $mod+Shift+4 move container to workspace 4
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+4 move container to workspace 4
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+4 move container to workspace 4
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+4 to command `move container to workspace 4` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 162: bindsym $mod+Shift+5 move container to workspace 5
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+5 move container to workspace 5
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+5 move container to workspace 5
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+5 to command `move container to workspace 5` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 163: bindsym $mod+Shift+6 move container to workspace 6
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+6 move container to workspace 6
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+6 move container to workspace 6
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+6 to command `move container to workspace 6` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 164: bindsym $mod+Shift+7 move container to workspace 7
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+7 move container to workspace 7
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+7 move container to workspace 7
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+7 to command `move container to workspace 7` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 165: bindsym $mod+Shift+8 move container to workspace 8
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+8 move container to workspace 8
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+8 move container to workspace 8
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+8 to command `move container to workspace 8` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 166: bindsym $mod+Shift+9 move container to workspace 9
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+9 move container to workspace 9
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+9 move container to workspace 9
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+9 to command `move container to workspace 9` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 167: bindsym $mod+Shift+0 move container to workspace 10
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+0 move container to workspace 10
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+0 move container to workspace 10
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+0 to command `move container to workspace 10` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 168: # Note: workspaces can have any name you want, not just numbers.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 169: # We just use 1-10 as the default.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 170:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 171: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 172: # Layout stuff:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 173: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 174: # You can "split" the current object of your focus with
2019-12-18 10:29:41 - [sway/config.c:764] Read line 175: # $mod+b or $mod+v, for horizontal and vertical splits
2019-12-18 10:29:41 - [sway/config.c:764] Read line 176: # respectively.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 177: bindsym $mod+b splith
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+b splith
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+b splith
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+b to command `splith` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 178: bindsym $mod+v splitv
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+v splitv
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+v splitv
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+v to command `splitv` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 179:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 180: # Switch the current container between different layout styles
2019-12-18 10:29:41 - [sway/config.c:764] Read line 181: bindsym $mod+s layout stacking
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+s layout stacking
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+s layout stacking
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 182: bindsym $mod+w layout tabbed
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+w layout tabbed
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+w layout tabbed
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 183: bindsym $mod+e layout toggle split
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+e layout toggle split
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+e layout toggle split
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 184:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 185: # Make the current focus fullscreen
2019-12-18 10:29:41 - [sway/config.c:764] Read line 186: bindsym $mod+f fullscreen
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+f fullscreen
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+f fullscreen
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 187:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 188: # Toggle the current focus between tiling and floating mode
2019-12-18 10:29:41 - [sway/config.c:764] Read line 189: bindsym $mod+Shift+space floating toggle
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+space floating toggle
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+space floating toggle
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 190:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 191: # Swap focus between the tiling area and the floating area
2019-12-18 10:29:41 - [sway/config.c:764] Read line 192: bindsym $mod+space focus mode_toggle
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+space focus mode_toggle
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+space focus mode_toggle
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 193:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 194: # move focus to the parent container
2019-12-18 10:29:41 - [sway/config.c:764] Read line 195: bindsym $mod+a focus parent
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+a focus parent
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+a focus parent
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+a to command `focus parent` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 196:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 197: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 198: # Scratchpad:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 199: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 200: # Sway has a "scratchpad", which is a bag of holding for windows.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 201: # You can send windows there and get them back later.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 202:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 203: # Move the currently focused window to the scratchpad
2019-12-18 10:29:41 - [sway/config.c:764] Read line 204: bindsym $mod+Shift+minus move scratchpad
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+Shift+minus move scratchpad
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+minus move scratchpad
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 205:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 206: # Show the next scratchpad window or hide the focused scratchpad window.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 207: # If there are multiple scratchpad windows, this command cycles through them.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 208: bindsym $mod+minus scratchpad show
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+minus scratchpad show
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+minus scratchpad show
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 209:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 210: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 211: # Resizing containers:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 212: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 213: mode "resize" {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'mode "resize"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 214: # left will shrink the containers width
2019-12-18 10:29:41 - [sway/config.c:764] Read line 215: # right will grow the containers width
2019-12-18 10:29:41 - [sway/config.c:764] Read line 216: # up will shrink the containers height
2019-12-18 10:29:41 - [sway/config.c:764] Read line 217: # down will grow the containers height
2019-12-18 10:29:41 - [sway/config.c:764] Read line 218: bindsym $left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym $left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym h resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym h resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound h to command `resize shrink width 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 219: bindsym $down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym $down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym j resize grow height 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym j resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound j to command `resize grow height 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 220: bindsym $up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym $up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym k resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym k resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound k to command `resize shrink height 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 221: bindsym $right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym $right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym l resize grow width 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym l resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound l to command `resize grow width 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 222:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 223: # ditto, with arrow keys
2019-12-18 10:29:41 - [sway/config.c:764] Read line 224: bindsym Left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Left resize shrink width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 225: bindsym Down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Down resize grow height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Down to command `resize grow height 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 226: bindsym Up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Up resize shrink height 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 227: bindsym Right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Right resize grow width 10px
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Right to command `resize grow width 10px` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 228:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 229: # return to default mode
2019-12-18 10:29:41 - [sway/config.c:764] Read line 230: bindsym Return mode "default"
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Return mode "default"
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Return mode "default"
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Return mode "default"
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Return to command `mode "default"` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 231: bindsym Escape mode "default"
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: mode "resize" bindsym Escape mode "default"
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: mode "resize" bindsym Escape mode "default"
2019-12-18 10:29:41 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: bindsym Escape mode "default"
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Escape to command `mode "default"` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 232: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'mode "resize"'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 233: bindsym $mod+r mode "resize"
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bindsym $mod+r mode "resize"
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bindsym Mod4+r mode "resize"
2019-12-18 10:29:41 - [sway/commands/bind.c:288] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 234:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 235: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 236: # Status Bar:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 237: #
2019-12-18 10:29:41 - [sway/config.c:764] Read line 238: # Read `man 5 sway-bar` for more information about this section.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 239: bar {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'bar'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 240: position top
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bar position top
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bar position top
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(top)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(top)
2019-12-18 10:29:41 - [sway/commands/bar.c:113] Creating bar bar-0
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(position)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: position top
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(position)
2019-12-18 10:29:41 - [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0
2019-12-18 10:29:41 - [sway/config.c:764] Read line 241:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 242: # When the status_command prints a new line to stdout, swaybar updates.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 243: # The default just shows the current date and time.
2019-12-18 10:29:41 - [sway/config.c:764] Read line 244: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(while)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(while)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(status_command)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(status_command)
2019-12-18 10:29:41 - [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:29:41 - [sway/config.c:764] Read line 245:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 246: colors {
2019-12-18 10:29:41 - [sway/config.c:818] Entering block 'bar colors'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 247: statusline #ffffff
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bar colors statusline #ffffff
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bar colors statusline #ffffff
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: colors statusline #ffffff
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: statusline #ffffff
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 248: background #323232
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bar colors background #323232
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bar colors background #323232
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: colors background #323232
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: background #323232
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 249: inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:29:41 - [sway/commands.c:413] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:29:41 - [sway/config.c:764] Read line 250: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'bar colors'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 251: }
2019-12-18 10:29:41 - [sway/config.c:835] Exiting block 'bar'
2019-12-18 10:29:41 - [sway/config.c:764] Read line 252:
2019-12-18 10:29:41 - [sway/config.c:764] Read line 253: include /etc/sway/config.d/*
2019-12-18 10:29:41 - [sway/commands.c:362] Config command: include /etc/sway/config.d/*
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(include)
2019-12-18 10:29:41 - [sway/commands.c:382] After replacement: include /etc/sway/config.d/*
2019-12-18 10:29:41 - [sway/config.c:564] /etc/sway/config.d/* not found.
2019-12-18 10:29:41 - [sway/config.c:409] Error(s) loading config!
2019-12-18 10:29:41 - [sway/server.c:177] Initializing Xwayland
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:241] Loaded cursor theme 'default', available cursors:
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] default (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ne-resize (1 images) 24x24+15,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ll_angle (1 images) 24x24+4,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-no-drop (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] grab (1 images) 24x24+11,7
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_side (1 images) 24x24+13,18
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] text (1 images) 24x24+11,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] target (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_left_corner (1 images) 24x24+10,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_left_corner (1 images) 24x24+10,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nw-resize (1 images) 24x24+10,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] context-menu (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_side (1 images) 24x24+19,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_right_corner (1 images) 24x24+15,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] w-resize (1 images) 24x24+6,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_down_arrow (1 images) 24x24+12,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cross_reverse (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] not-allowed (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_ver (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] X_cursor (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] plus (1 images) 24x24+10,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-copy (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] s-resize (1 images) 24x24+13,18
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_fdiag (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] circle (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand1 (1 images) 24x24+11,7
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] grabbing (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] move (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] e-resize (1 images) 24x24+19,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_tee (1 images) 24x24+12,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pointer-move (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-move (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] progress (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] watch (60 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_right_corner (1 images) 24x24+15,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_side (1 images) 24x24+6,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] link (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand2 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-ask (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] n-resize (1 images) 24x24+13,6
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] crossed_circle (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ur_angle (1 images) 24x24+20,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nesw-resize (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] crosshair (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cross (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ul_angle (1 images) 24x24+4,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draft_large (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_left_arrow (1 images) 24x24+6,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr_watch (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] col-resize (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fleur (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 00008160000006810000408080010102 (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_left_arrow (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cell (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_up_arrow (1 images) 24x24+12,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_all (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] copy (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_ptr (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_right_arrow (1 images) 24x24+19,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] diamond_cross (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] row-resize (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] lr_angle (1 images) 24x24+20,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pointer (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_bdiag (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-link (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_tee (1 images) 24x24+20,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] se-resize (1 images) 24x24+15,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] zoom-out (1 images) 24x24+11,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ns-resize (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pencil (1 images) 24x24+7,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] xterm (1 images) 24x24+11,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_hor (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] all-scroll (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] icon (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dotbox (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] wait (60 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draft_small (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sw-resize (1 images) 24x24+10,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_tee (1 images) 24x24+6,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] zoom-in (1 images) 24x24+11,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] help (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] arrow (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] question_arrow (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nwse-resize (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] no-drop (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_tee (1 images) 24x24+12,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ew-resize (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_side (1 images) 24x24+13,6
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr_help (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] alias (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] tcross (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dot_box_mask (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draped_box (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pirate (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-none (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] vertical-text (1 images) 24x24+12,11
2019-12-18 10:29:41 - [sway/server.c:203] Starting backend on wayland display 'wayland-1'
2019-12-18 10:29:41 - [backend/wayland/backend.c:99] Initializating wayland backend
2019-12-18 10:29:41 - [sway/input/input-manager.c:572] adding device: '0:0:wayland'
2019-12-18 10:29:41 - [sway/input/input-manager.c:166] no fallback seat config - creating default
2019-12-18 10:29:41 - [sway/config/seat.c:58] Adding non-wildcard seat config
2019-12-18 10:29:41 - [sway/config/seat.c:75] Config stored for seat seat0
2019-12-18 10:29:41 - [sway/input/input-manager.c:782] applying seat config for seat seat0
2019-12-18 10:29:41 - [sway/input/seat.c:697] adding device 0:0:wayland to seat seat0
2019-12-18 10:29:41 - [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 24 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2019-12-18 10:29:41 - [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 34 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2019-12-18 10:29:41 - [GLES2] VS SIMD8 shader: 28 inst, 0 loops, 116 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 448 to 336 bytes.
2019-12-18 10:29:41 - [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 0 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 32 to 32 bytes.
2019-12-18 10:29:41 - [sway/desktop/output.c:609] New output 0x55fed1ad1300: WL-1
2019-12-18 10:29:41 - [sway/tree/workspace.c:291] Workspace: Generating new workspace name for output WL-1
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '1'
2019-12-18 10:29:41 - [sway/tree/workspace.c:282] Workspace: Found free name 1
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '2'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '3'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '4'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '5'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '6'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '7'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '8'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '9'
2019-12-18 10:29:41 - [sway/tree/workspace.c:226] Got valid workspace command for target: '10'
2019-12-18 10:29:41 - [sway/tree/output.c:132] Creating default workspace 1
2019-12-18 10:29:41 - [sway/tree/workspace.c:78] Adding workspace 1 for output WL-1
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 1280x720@0,0
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 1280x720@0,0
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1b33000 committing with 2 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1b33000
2019-12-18 10:29:41 - [sway/input/input-manager.c:572] adding device: '0:0:wayland'
2019-12-18 10:29:41 - [sway/input/seat.c:697] adding device 0:0:wayland to seat seat0
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:241] Loaded cursor theme 'default', available cursors:
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] default (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ne-resize (1 images) 24x24+15,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ll_angle (1 images) 24x24+4,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-no-drop (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] grab (1 images) 24x24+11,7
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_side (1 images) 24x24+13,18
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] text (1 images) 24x24+11,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] target (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_left_corner (1 images) 24x24+10,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_left_corner (1 images) 24x24+10,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nw-resize (1 images) 24x24+10,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] context-menu (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_side (1 images) 24x24+19,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_right_corner (1 images) 24x24+15,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] w-resize (1 images) 24x24+6,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_down_arrow (1 images) 24x24+12,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cross_reverse (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] not-allowed (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_ver (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] X_cursor (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] plus (1 images) 24x24+10,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-copy (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] s-resize (1 images) 24x24+13,18
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_fdiag (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] circle (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand1 (1 images) 24x24+11,7
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] grabbing (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] move (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] e-resize (1 images) 24x24+19,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_tee (1 images) 24x24+12,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pointer-move (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-move (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] progress (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] watch (60 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] bottom_right_corner (1 images) 24x24+15,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_side (1 images) 24x24+6,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] link (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] hand2 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-ask (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] n-resize (1 images) 24x24+13,6
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] crossed_circle (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ur_angle (1 images) 24x24+20,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nesw-resize (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] crosshair (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cross (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ul_angle (1 images) 24x24+4,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draft_large (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_left_arrow (1 images) 24x24+6,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr_watch (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] col-resize (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fleur (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 00008160000006810000408080010102 (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_left_arrow (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] cell (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_up_arrow (1 images) 24x24+12,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_all (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] copy (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_ptr (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_right_arrow (1 images) 24x24+19,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] diamond_cross (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] row-resize (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] lr_angle (1 images) 24x24+20,19
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pointer (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_bdiag (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-link (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] right_tee (1 images) 24x24+20,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] se-resize (1 images) 24x24+15,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] zoom-out (1 images) 24x24+11,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ns-resize (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pencil (1 images) 24x24+7,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] xterm (1 images) 24x24+11,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] size_hor (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] all-scroll (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] icon (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dotbox (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] wait (60 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draft_small (1 images) 24x24+21,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sw-resize (1 images) 24x24+10,15
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_tee (1 images) 24x24+6,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] zoom-in (1 images) 24x24+11,10
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] help (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] arrow (1 images) 24x24+4,4
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] question_arrow (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] nwse-resize (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] no-drop (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_tee (1 images) 24x24+12,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] sb_v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] ew-resize (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] top_side (1 images) 24x24+13,6
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] left_ptr_help (1 images) 24x24+12,21
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] alias (1 images) 24x24+9,9
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] tcross (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dot_box_mask (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] draped_box (1 images) 24x24+11,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] pirate (1 images) 24x24+12,12
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] dnd-none (1 images) 24x24+12,11
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2019-12-18 10:29:41 - [xcursor/wlr_xcursor.c:246] vertical-text (1 images) 24x24+12,11
2019-12-18 10:29:41 - [sway/input/seat.c:543] Mapping input device 0:0:wayland to output WL-1
2019-12-18 10:29:41 - [sway/input/seat.c:555] Mapped to output WL-1
2019-12-18 10:29:41 - [GLES2] FS SIMD8 shader: 14 inst, 0 loops, 308 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2019-12-18 10:29:41 - [GLES2] FS SIMD16 shader: 14 inst, 0 loops, 322 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2019-12-18 10:29:41 - [sway/config/bar.c:251] Invoking swaybar for bar id 'bar-0'
2019-12-18 10:29:41 - [sway/config/bar.c:230] Spawned swaybar 30514
2019-12-18 10:29:41 - [sway/config.c:631] Running deferred commands
2019-12-18 10:29:41 - [sway/commands.c:258] 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''
2019-12-18 10:29:41 - [sway/commands.c:150] find_handler(exec)
2019-12-18 10:29:41 - [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'
2019-12-18 10:29:41 - [sway/commands/exec_always.c:87] Child process created with pid 30516
2019-12-18 10:29:41 - [sway/tree/root.c:270] Recording workspace for process 30516
2019-12-18 10:29:41 - [sway/server.c:214] Running compositor on wayland display 'wayland-1'
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1b2e8a0 committing with 1 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1b2e8a0
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1ad0640 committing with 1 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1ad0640
2019-12-18 10:29:41 - [main.c:299] Found config * for output WL-1 (wayland wayland )
2019-12-18 10:29:41 - [types/wlr_surface.c:609] New wlr_surface 0x55fed1b53ce0 (res 0x55fed1afbac0)
2019-12-18 10:29:41 - [types/wlr_layer_shell_v1.c:387] new layer_surface 0x55fed199c730 (res 0x55fed1acaca0)
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:360] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0
2019-12-18 10:29:41 - [sway/ipc-server.c:154] Event on IPC listening socket
2019-12-18 10:29:41 - [sway/ipc-server.c:200] New client: fd 26
2019-12-18 10:29:41 - [sway/ipc-server.c:154] Event on IPC listening socket
2019-12-18 10:29:41 - [sway/ipc-server.c:200] New client: fd 28
2019-12-18 10:29:41 - [sway/ipc-server.c:220] Client 26 readable
2019-12-18 10:29:41 - [sway/ipc-server.c:920] Added IPC reply of type 0x6 to client 26 queue: { "id": "bar-0", "mode": "dock", "hidden_state": "hide", "position": "top", "status_command": "while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done", "font": "monospace 10", "gaps": { "top": 0, "right": 0, "bottom": 0, "left": 0 }, "bar_height": 0, "status_padding": 1, "status_edge_padding": 3, "wrap_scroll": false, "workspace_buttons": true, "strip_workspace_numbers": false, "strip_workspace_name": false, "binding_mode_indicator": true, "verbose": false, "pango_markup": false, "colors": { "background": "#323232ff", "statusline": "#ffffffff", "separator": "#666666ff", "focused_background": "#323232ff", "focused_statusline": "#ffffffff", "focused_separator": "#666666ff", "focused_workspace_border": "#4c7899ff", "focused_workspace_bg": "#285577ff", "focused_workspace_text": "#ffffffff", "inactive_workspace_border": "#32323200", "inactive_workspace_bg": "#32323200", "inactive_workspace_text": "#5c5c5cff", "active_workspace_border": "#333333ff", "active_workspace_bg": "#5f676aff", "active_workspace_text": "#ffffffff", "urgent_workspace_border": "#2f343aff", "urgent_workspace_bg": "#900000ff", "urgent_workspace_text": "#ffffffff", "binding_mode_border": "#2f343aff", "binding_mode_bg": "#900000ff", "binding_mode_text": "#ffffffff" }, "tray_padding": 2 }
2019-12-18 10:29:41 - [sway/ipc-server.c:509] Client 26 writable
2019-12-18 10:29:41 - [sway/ipc-server.c:220] Client 26 readable
2019-12-18 10:29:41 - [sway/ipc-server.c:920] Added IPC reply of type 0x3 to client 26 queue: [ { "id": 3, "name": "WL-1", "rect": { "x": 0, "y": 0, "width": 636, "height": 1031 }, "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, "primary": false, "make": "wayland", "model": "wayland", "serial": "", "scale": 1.0, "transform": "normal", "current_workspace": "1", "modes": [ ], "current_mode": { "width": 636, "height": 1031, "refresh": 0 }, "focused": true, "subpixel_hinting": "unknown" } ]
2019-12-18 10:29:41 - [sway/ipc-server.c:509] Client 26 writable
2019-12-18 10:29:41 - [sway/ipc-server.c:220] Client 28 readable
2019-12-18 10:29:41 - [sway/ipc-server.c:920] Added IPC reply of type 0x2 to client 28 queue: {"success": true}
2019-12-18 10:29:41 - [sway/ipc-server.c:509] Client 28 writable
2019-12-18 10:29:41 - [types/wlr_surface.c:609] New wlr_surface 0x55fed1b531b0 (res 0x55fed1af4430)
2019-12-18 10:29:41 - [types/wlr_surface.c:609] New wlr_surface 0x55fed1b534d0 (res 0x55fed1b20900)
2019-12-18 10:29:41 - [types/wlr_layer_shell_v1.c:387] new layer_surface 0x55fed1b537f0 (res 0x55fed1b20a20)
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:360] new layer surface: namespace swaynag layer 2 anchor 2 size 0x35 margin 0,0,0,0
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x996@0,35
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 35.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1b57fc0 committing with 1 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1b57fc0
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x998@0,33
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 33.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1b57fc0 committing with 1 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1b57fc0
2019-12-18 10:29:41 - [swaybar/tray/watcher.c:185] Failed to acquire service name: File exists
2019-12-18 10:29:41 - [swaybar/tray/watcher.c:185] Failed to acquire service name: File exists
2019-12-18 10:29:41 - [sway/ipc-server.c:220] Client 26 readable
2019-12-18 10:29:41 - [sway/ipc-server.c:920] Added IPC reply of type 0x1 to client 26 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 33, "width": 636, "height": 998 }, "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": "WL-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2019-12-18 10:29:41 - [sway/ipc-server.c:509] Client 26 writable
2019-12-18 10:29:41 - [types/wlr_surface.c:609] New wlr_surface 0x55fed1b58f00 (res 0x55fed1965a30)
2019-12-18 10:29:41 - [types/wlr_layer_shell_v1.c:387] new layer_surface 0x55fed1b59220 (res 0x55fed1b4b190)
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:360] new layer surface: namespace panel layer 1 anchor 1 size 0x22 margin 0,0,0,0
2019-12-18 10:29:41 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:29:41 - [sway/tree/arrange.c:189] Usable area for ws: 636x976@0,55
2019-12-18 10:29:41 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 55.000000
2019-12-18 10:29:41 - [sway/desktop/transaction.c:411] Transaction 0x55fed1b28000 committing with 1 instructions
2019-12-18 10:29:41 - [sway/desktop/transaction.c:280] Applying transaction 0x55fed1b28000
2019-12-18 10:29:41 - [types/wlr_surface.c:609] New wlr_surface 0x55fed1b59440 (res 0x55fed1b04590)
2019-12-18 10:29:41 - [swaybar/tray/host.c:24] Registering Status Notifier Item ':1.10/org/ayatana/NotificationItem/Slack1'
2019-12-18 10:29:41 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 IconPixmap: No such property “IconPixmap”
2019-12-18 10:29:41 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 AttentionIconPixmap: No such property “AttentionIconPixmap”
2019-12-18 10:29:41 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 ItemIsMenu: No such property “ItemIsMenu”
Got sleep lock: 11
2019-12-18 10:30:11 - [common/ipc-client.c:88] Unable to receive IPC response
date: write error: Broken pipe
2019-12-18 10:31:46 - [sway/main.c:151] Linux athena 5.3.15-300.fc31.x86_64 #1 SMP Thu Dec 5 15:04:01 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
2019-12-18 10:31:46 - [sway/main.c:167] Contents of /etc/os-release:
2019-12-18 10:31:46 - [sway/main.c:151] NAME=Fedora
2019-12-18 10:31:46 - [sway/main.c:151] VERSION="31 (Workstation Edition)"
2019-12-18 10:31:46 - [sway/main.c:151] ID=fedora
2019-12-18 10:31:46 - [sway/main.c:151] VERSION_ID=31
2019-12-18 10:31:46 - [sway/main.c:151] VERSION_CODENAME=""
2019-12-18 10:31:46 - [sway/main.c:151] PLATFORM_ID="platform:f31"
2019-12-18 10:31:46 - [sway/main.c:151] PRETTY_NAME="Fedora 31 (Workstation Edition)"
2019-12-18 10:31:46 - [sway/main.c:151] ANSI_COLOR="0;34"
2019-12-18 10:31:46 - [sway/main.c:151] LOGO=fedora-logo-icon
2019-12-18 10:31:46 - [sway/main.c:151] CPE_NAME="cpe:/o:fedoraproject:fedora:31"
2019-12-18 10:31:46 - [sway/main.c:151] HOME_URL="https://fedoraproject.org/"
2019-12-18 10:31:46 - [sway/main.c:151] DOCUMENTATION_URL="https://docs.fedoraproject.org/en-US/fedora/f31/system-administrators-guide/"
2019-12-18 10:31:46 - [sway/main.c:151] SUPPORT_URL="https://fedoraproject.org/wiki/Communicating_and_getting_help"
2019-12-18 10:31:46 - [sway/main.c:151] BUG_REPORT_URL="https://bugzilla.redhat.com/"
2019-12-18 10:31:46 - [sway/main.c:151] REDHAT_BUGZILLA_PRODUCT="Fedora"
2019-12-18 10:31:46 - [sway/main.c:151] REDHAT_BUGZILLA_PRODUCT_VERSION=31
2019-12-18 10:31:46 - [sway/main.c:151] REDHAT_SUPPORT_PRODUCT="Fedora"
2019-12-18 10:31:46 - [sway/main.c:151] REDHAT_SUPPORT_PRODUCT_VERSION=31
2019-12-18 10:31:46 - [sway/main.c:151] PRIVACY_POLICY_URL="https://fedoraproject.org/wiki/Legal:PrivacyPolicy"
2019-12-18 10:31:46 - [sway/main.c:151] VARIANT="Workstation Edition"
2019-12-18 10:31:46 - [sway/main.c:151] VARIANT_ID=workstation
2019-12-18 10:31:46 - [sway/main.c:167] Contents of /etc/redhat-release:
2019-12-18 10:31:46 - [sway/main.c:151] Fedora release 31 (Thirty One)
2019-12-18 10:31:46 - [sway/main.c:139] LD_LIBRARY_PATH=(null)
2019-12-18 10:31:46 - [sway/main.c:139] LD_PRELOAD=(null)
2019-12-18 10:31:46 - [sway/main.c:139] PATH=/home/jwhett/go/bin:/home/jwhett/.local/bin:/home/jwhett/bin:/home/jwhett/.npm-packages/bin:/home/jwhett/.nimble/bin:/usr/local/go/bin:/home/jwhett/.cargo/bin:/home/jwhett/.local/bin:/home/jwhett/bin:/usr/share/Modules/bin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin
2019-12-18 10:31:46 - [sway/main.c:139] SWAYSOCK=/run/user/1000/sway-ipc.1000.2413.sock
2019-12-18 10:31:46 - [sway/server.c:40] Preparing Wayland server initialization
2019-12-18 10:31:46 - [backend/wayland/backend.c:181] Creating wayland backend
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_shm v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_linux_dmabuf_v1 v3
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_drm v2
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_compositor v4
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_subcompositor v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_data_device_manager v3
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: gamma_control_manager v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_gamma_control_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: gtk_primary_selection_device_manager v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_output_manager_v1 v2
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: org_kde_kwin_idle v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_idle_inhibit_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_layer_shell_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_shell_v6 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: xdg_wm_base v2
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: org_kde_kwin_server_decoration_manager v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zxdg_decoration_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_relative_pointer_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_pointer_constraints_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wp_presentation v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_export_dmabuf_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_screencopy_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_data_control_manager_v1 v2
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_primary_selection_device_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwp_virtual_keyboard_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: zwlr_input_inhibit_manager_v1 v1
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_seat v7
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_output v3
2019-12-18 10:31:46 - [backend/wayland/backend.c:63] Remote wayland global: wl_output v3
2019-12-18 10:31:46 - [backend/wayland/wl_seat.c:424] seat 0x55cf97ac1b20 offered pointer
2019-12-18 10:31:46 - [backend/wayland/wl_seat.c:437] seat 0x55cf97ac1b20 offered keyboard
2019-12-18 10:31:46 - [render/egl.c:172] Using EGL 1.4
2019-12-18 10:31:46 - [render/egl.c:173] 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_EXT_swap_buffers_with_damage 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_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_KHR_swap_buffers_with_damage 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 EGL_WL_create_wayland_buffer_from_image
2019-12-18 10:31:46 - [render/egl.c:174] EGL vendor: Mesa Project
2019-12-18 10:31:46 - [render/egl.c:117] Supported dmabuf buffer formats: 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
2019-12-18 10:31:46 - [render/gles2/renderer.c:546] Using OpenGL ES 3.2 Mesa 19.2.7
2019-12-18 10:31:46 - [render/gles2/renderer.c:547] GL vendor: Intel Open Source Technology Center
2019-12-18 10:31:46 - [render/gles2/renderer.c:548] 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_depth_clamp GL_EXT_texture_query_lod
2019-12-18 10:31:46 - [backend/noop/backend.c:51] Creating noop backend
2019-12-18 10:31:46 - [sway/main.c:362] Starting sway version 1.0
2019-12-18 10:31:46 - [sway/server.c:54] Initializing Wayland server
2019-12-18 10:31:46 - [types/wlr_idle.c:258] idle manager created
2019-12-18 10:31:46 - [types/wlr_idle_inhibit_v1.c:191] idle_inhibit manager created
2019-12-18 10:31:46 - [types/wlr_relative_pointer_v1.c:228] relative_pointer_v1 manager created
2019-12-18 10:31:46 - [wayland] unable to lock lockfile /run/user/1000/wayland-0.lock, maybe another compositor is running
2019-12-18 10:31:46 - [sway/config.c:391] Loading config from /home/jwhett/.config/sway/config
2019-12-18 10:31:46 - [sway/config.c:764] Read line 1: # Read `man 5 sway` for a complete reference.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 2: # Also check this out: https://fedoramagazine.org/setting-up-the-sway-window-manager-on-fedora/
2019-12-18 10:31:46 - [sway/config.c:764] Read line 3:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 4: #############
2019-12-18 10:31:46 - [sway/config.c:764] Read line 5: # Variables #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 6: #############
2019-12-18 10:31:46 - [sway/config.c:764] Read line 7:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 8: # Logo key. Use Mod1 for Alt.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 9: set $mod Mod4
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $mod Mod4
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $mod Mod4
2019-12-18 10:31:46 - [sway/config.c:764] Read line 10:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 11: # Home row direction keys, like vim
2019-12-18 10:31:46 - [sway/config.c:764] Read line 12: set $left h
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $left h
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $left h
2019-12-18 10:31:46 - [sway/config.c:764] Read line 13: set $down j
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $down j
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $down j
2019-12-18 10:31:46 - [sway/config.c:764] Read line 14: set $up k
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $up k
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $up k
2019-12-18 10:31:46 - [sway/config.c:764] Read line 15: set $right l
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $right l
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $right l
2019-12-18 10:31:46 - [sway/config.c:764] Read line 16:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 17: # Your preferred terminal emulator
2019-12-18 10:31:46 - [sway/config.c:764] Read line 18: set $term alacritty
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $term alacritty
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $term alacritty
2019-12-18 10:31:46 - [sway/config.c:764] Read line 19:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 20: # Your preferred application launcher
2019-12-18 10:31:46 - [sway/config.c:764] Read line 21: # Note: it's recommended that you pass the final command to sway
2019-12-18 10:31:46 - [sway/config.c:764] Read line 22: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:31:46 - [sway/config.c:764] Read line 23:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 24: # Set a browser here
2019-12-18 10:31:46 - [sway/config.c:764] Read line 25: set $browser firefox
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $browser firefox
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $browser firefox
2019-12-18 10:31:46 - [sway/config.c:764] Read line 26:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 27: ########################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 28: # Output configuration #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 29: ########################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 30:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 31: set $laptop eDP-1
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: set $laptop eDP-1
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(set)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: set $laptop eDP-1
2019-12-18 10:31:46 - [sway/config.c:764] Read line 32:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 33: # Support clamshell mode
2019-12-18 10:31:46 - [sway/config.c:764] Read line 34: bindswitch lid:on --reload output $laptop disable
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindswitch lid:on --reload output $laptop disable
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindswitch)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindswitch lid:on --reload output eDP-1 disable
2019-12-18 10:31:46 - [sway/commands/bind.c:225] bindswitch - Bound lid:on to command `--reload output eDP-1 disable`
2019-12-18 10:31:46 - [sway/config.c:764] Read line 35: bindswitch lid:off --reload output $laptop enable
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindswitch lid:off --reload output $laptop enable
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindswitch)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindswitch lid:off --reload output eDP-1 enable
2019-12-18 10:31:46 - [sway/commands/bind.c:225] bindswitch - Bound lid:off to command `--reload output eDP-1 enable`
2019-12-18 10:31:46 - [sway/config.c:764] Read line 36:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 37: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 38: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output * bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bg)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bg)
2019-12-18 10:31:46 - [sway/config/output.c:189] Adding output * config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output * (enabled: -1) (-1x-1@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[0] = swaybg
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[1] = -o
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[2] = *
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[3] = -i
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[4] = /home/jwhett/Pictures/Wallpapers/pinkfloyd.png
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[5] = -m
2019-12-18 10:31:46 - [sway/config/output.c:607] spawn_swaybg cmd[6] = fill
2019-12-18 10:31:46 - [sway/config.c:764] Read line 39:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 40: output eDP-1 {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'output eDP-1'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 41: # Laptop
2019-12-18 10:31:46 - [sway/config.c:764] Read line 42: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output eDP-1 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output eDP-1 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:31:46 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output eDP-1 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 43: pos 0 1080
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output eDP-1 pos 0 1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output eDP-1 pos 0 1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: pos 0 1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output eDP-1 (enabled: -1) (1920x1080@-1.000000Hz position 0,1080 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 44: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'output eDP-1'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 45:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 46: output DP-1 {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'output DP-1'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 47: # Thinkvision
2019-12-18 10:31:46 - [sway/config.c:764] Read line 48: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output DP-1 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output DP-1 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:31:46 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output DP-1 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 49: pos 0 0
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output DP-1 pos 0 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output DP-1 pos 0 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: pos 0 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output DP-1 (enabled: -1) (1920x1080@-1.000000Hz position 0,0 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 50: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'output DP-1'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 51:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 52: output HDMI-A-2 {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'output HDMI-A-2'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 53: # Acer
2019-12-18 10:31:46 - [sway/config.c:764] Read line 54: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output HDMI-A-2 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output HDMI-A-2 resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: resolution 1920x1080
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(resolution)
2019-12-18 10:31:46 - [sway/config/output.c:176] Adding non-wildcard output config
2019-12-18 10:31:46 - [sway/config/output.c:179] Merging on top of output * config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 55: pos 1920 0
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output HDMI-A-2 pos 1920 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output HDMI-A-2 pos 1920 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: pos 1920 0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(pos)
2019-12-18 10:31:46 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position 1920,0 scale -1.000000 subpixel unknown transform -1) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 56: transform 270
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: output HDMI-A-2 transform 270
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(output)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: output HDMI-A-2 transform 270
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(transform)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: transform 270
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(transform)
2019-12-18 10:31:46 - [sway/config/output.c:170] Merging on top of existing output config
2019-12-18 10:31:46 - [sway/config/output.c:193] Config stored for output HDMI-A-2 (enabled: -1) (1920x1080@-1.000000Hz position 1920,0 scale -1.000000 subpixel unknown transform 3) (bg /home/jwhett/Pictures/Wallpapers/pinkfloyd.png fill) (dpms 0)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 57: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'output HDMI-A-2'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 58:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 59: ## Idle configuration
2019-12-18 10:31:46 - [sway/config.c:764] Read line 60: # This will lock your screen after 300 seconds of inactivity, then turn off
2019-12-18 10:31:46 - [sway/config.c:764] Read line 61: # your displays after another 300 seconds, and turn your screens back on when
2019-12-18 10:31:46 - [sway/config.c:764] Read line 62: # resumed. It will also lock your screen before your computer goes to sleep.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 67: 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'
2019-12-18 10:31:46 - [sway/commands.c:362] 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'
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(exec)
2019-12-18 10:31:46 - [sway/commands.c:382] 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'
2019-12-18 10:31:46 - [sway/config.c:808] 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''
2019-12-18 10:31:46 - [sway/config.c:764] Read line 68:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 69:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 70:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 71: #######################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 72: # Input configuration #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 73: #######################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 74:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 75: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 76: xkb_options ctrl:nocaps
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" xkb_options ctrl:nocaps
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle" xkb_options ctrl:nocaps
2019-12-18 10:31:46 - [sway/commands/input.c:65] entering input block: 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle
2019-12-18 10:31:46 - [sway/config/input.c:14] new_input_config(1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(xkb_options)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: xkb_options ctrl:nocaps
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(xkb_options)
2019-12-18 10:31:46 - [sway/commands/input/xkb_options.c:19] set-xkb_options for config: 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle options: ctrl:nocaps
2019-12-18 10:31:46 - [sway/config/input.c:193] Adding non-wildcard input config
2019-12-18 10:31:46 - [sway/config/input.c:210] Config stored for input 1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle
2019-12-18 10:31:46 - [sway/config.c:764] Read line 77: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'input "1423:37904:KINESIS_FREESTYLE_KB800_KB800_Kinesis_Freestyle"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 78:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 79: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'input "1149:8257:Kensington_Kensington_Slimblade_Trackball"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 80: left_handed enabled
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" left_handed enabled
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" left_handed enabled
2019-12-18 10:31:46 - [sway/commands/input.c:65] entering input block: 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:31:46 - [sway/config/input.c:14] new_input_config(1149:8257:Kensington_Kensington_Slimblade_Trackball)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(left_handed)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: left_handed enabled
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(left_handed)
2019-12-18 10:31:46 - [sway/config/input.c:193] Adding non-wildcard input config
2019-12-18 10:31:46 - [sway/config/input.c:210] Config stored for input 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:31:46 - [sway/config.c:764] Read line 81: natural_scroll enabled
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" natural_scroll enabled
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(input)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: input "1149:8257:Kensington_Kensington_Slimblade_Trackball" natural_scroll enabled
2019-12-18 10:31:46 - [sway/commands/input.c:65] entering input block: 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:31:46 - [sway/config/input.c:14] new_input_config(1149:8257:Kensington_Kensington_Slimblade_Trackball)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(natural_scroll)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: natural_scroll enabled
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(natural_scroll)
2019-12-18 10:31:46 - [sway/config/input.c:187] Merging on top of existing input config
2019-12-18 10:31:46 - [sway/config/input.c:210] Config stored for input 1149:8257:Kensington_Kensington_Slimblade_Trackball
2019-12-18 10:31:46 - [sway/config.c:764] Read line 82: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'input "1149:8257:Kensington_Kensington_Slimblade_Trackball"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 83:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 84: ################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 85: # Key bindings #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 86: ################
2019-12-18 10:31:46 - [sway/config.c:764] Read line 87:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 88: ## Basics:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 89: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 90: # start a terminal
2019-12-18 10:31:46 - [sway/config.c:764] Read line 91: bindsym $mod+Return exec $term
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Return exec $term
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Return exec alacritty
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Return to command `exec alacritty` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 92:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 93: # kill focused window
2019-12-18 10:31:46 - [sway/config.c:764] Read line 94: bindsym $mod+Shift+q kill
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+q kill
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+q kill
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 95:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 96: # start your launcher
2019-12-18 10:31:46 - [sway/config.c:764] Read line 97: bindsym $mod+d exec $menu
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+d exec $menu
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec --
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 98:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 99: # start your launcher
2019-12-18 10:31:46 - [sway/config.c:764] Read line 100: bindsym $mod+Shift+f exec $browser
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+f exec $browser
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+f exec firefox
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+f to command `exec firefox` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 101:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 102: # lock the screen
2019-12-18 10:31:46 - [sway/config.c:764] Read line 103: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym F8 exec swaylock -f -c 000000
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound F8 to command `exec swaylock -f -c 000000` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 104:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 105: # Drag floating windows by holding down $mod and left mouse button.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 106: # Resize them with right mouse button + $mod.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 107: # Despite the name, also works for non-floating windows.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 108: # Change normal to inverse to use left mouse button for resizing and right
2019-12-18 10:31:46 - [sway/config.c:764] Read line 109: # mouse button for dragging.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 110: floating_modifier $mod normal
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: floating_modifier $mod normal
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(floating_modifier)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: floating_modifier Mod4 normal
2019-12-18 10:31:46 - [sway/config.c:764] Read line 111:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 112: # reload the configuration file
2019-12-18 10:31:46 - [sway/config.c:764] Read line 113: bindsym $mod+Shift+c reload
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+c reload
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+c reload
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 114:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 115: # exit sway (logs you out of your Wayland session)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 116: 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'
2019-12-18 10:31:46 - [sway/commands.c:362] 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'
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] 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'
2019-12-18 10:31:46 - [sway/commands/bind.c:288] 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 '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 117:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 118: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 119: # Moving around:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 120: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 121: # Move your focus around
2019-12-18 10:31:46 - [sway/config.c:764] Read line 122: bindsym $mod+$left focus left
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+$left focus left
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+h focus left
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+h to command `focus left` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 123: bindsym $mod+$down focus down
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+$down focus down
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+j focus down
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+j to command `focus down` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 124: bindsym $mod+$up focus up
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+$up focus up
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+k focus up
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+k to command `focus up` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 125: bindsym $mod+$right focus right
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+$right focus right
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+l focus right
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+l to command `focus right` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 126: # or use $mod+[up|down|left|right]
2019-12-18 10:31:46 - [sway/config.c:764] Read line 127: bindsym $mod+Left focus left
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Left focus left
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Left focus left
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Left to command `focus left` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 128: bindsym $mod+Down focus down
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Down focus down
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Down focus down
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Down to command `focus down` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 129: bindsym $mod+Up focus up
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Up focus up
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Up focus up
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Up to command `focus up` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 130: bindsym $mod+Right focus right
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Right focus right
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Right focus right
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Right to command `focus right` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 131:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 132: # _move_ the focused window with the same, but add Shift
2019-12-18 10:31:46 - [sway/config.c:764] Read line 133: bindsym $mod+Shift+$left move left
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$left move left
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+h move left
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 134: bindsym $mod+Shift+$down move down
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$down move down
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+j move down
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 135: bindsym $mod+Shift+$up move up
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$up move up
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+k move up
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 136: bindsym $mod+Shift+$right move right
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+$right move right
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+l move right
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 137: # ditto, with arrow keys
2019-12-18 10:31:46 - [sway/config.c:764] Read line 138: bindsym $mod+Shift+Left move left
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Left move left
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Left move left
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 139: bindsym $mod+Shift+Down move down
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Down move down
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Down move down
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 140: bindsym $mod+Shift+Up move up
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Up move up
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Up move up
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 141: bindsym $mod+Shift+Right move right
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+Right move right
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+Right move right
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 142:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 143: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 144: # Workspaces:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 145: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 146: # switch to workspace
2019-12-18 10:31:46 - [sway/config.c:764] Read line 147: bindsym $mod+1 workspace 1
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+1 workspace 1
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+1 workspace 1
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+1 to command `workspace 1` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 148: bindsym $mod+2 workspace 2
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+2 workspace 2
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+2 workspace 2
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+2 to command `workspace 2` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 149: bindsym $mod+3 workspace 3
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+3 workspace 3
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+3 workspace 3
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+3 to command `workspace 3` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 150: bindsym $mod+4 workspace 4
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+4 workspace 4
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+4 workspace 4
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+4 to command `workspace 4` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 151: bindsym $mod+5 workspace 5
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+5 workspace 5
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+5 workspace 5
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+5 to command `workspace 5` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 152: bindsym $mod+6 workspace 6
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+6 workspace 6
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+6 workspace 6
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+6 to command `workspace 6` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 153: bindsym $mod+7 workspace 7
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+7 workspace 7
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+7 workspace 7
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+7 to command `workspace 7` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 154: bindsym $mod+8 workspace 8
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+8 workspace 8
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+8 workspace 8
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+8 to command `workspace 8` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 155: bindsym $mod+9 workspace 9
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+9 workspace 9
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+9 workspace 9
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+9 to command `workspace 9` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 156: bindsym $mod+0 workspace 10
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+0 workspace 10
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+0 workspace 10
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+0 to command `workspace 10` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 157: # move focused container to workspace
2019-12-18 10:31:46 - [sway/config.c:764] Read line 158: bindsym $mod+Shift+1 move container to workspace 1
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+1 move container to workspace 1
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+1 move container to workspace 1
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+1 to command `move container to workspace 1` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 159: bindsym $mod+Shift+2 move container to workspace 2
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+2 move container to workspace 2
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+2 move container to workspace 2
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+2 to command `move container to workspace 2` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 160: bindsym $mod+Shift+3 move container to workspace 3
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+3 move container to workspace 3
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+3 move container to workspace 3
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+3 to command `move container to workspace 3` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 161: bindsym $mod+Shift+4 move container to workspace 4
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+4 move container to workspace 4
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+4 move container to workspace 4
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+4 to command `move container to workspace 4` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 162: bindsym $mod+Shift+5 move container to workspace 5
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+5 move container to workspace 5
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+5 move container to workspace 5
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+5 to command `move container to workspace 5` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 163: bindsym $mod+Shift+6 move container to workspace 6
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+6 move container to workspace 6
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+6 move container to workspace 6
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+6 to command `move container to workspace 6` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 164: bindsym $mod+Shift+7 move container to workspace 7
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+7 move container to workspace 7
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+7 move container to workspace 7
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+7 to command `move container to workspace 7` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 165: bindsym $mod+Shift+8 move container to workspace 8
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+8 move container to workspace 8
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+8 move container to workspace 8
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+8 to command `move container to workspace 8` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 166: bindsym $mod+Shift+9 move container to workspace 9
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+9 move container to workspace 9
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+9 move container to workspace 9
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+9 to command `move container to workspace 9` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 167: bindsym $mod+Shift+0 move container to workspace 10
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+0 move container to workspace 10
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+0 move container to workspace 10
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+0 to command `move container to workspace 10` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 168: # Note: workspaces can have any name you want, not just numbers.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 169: # We just use 1-10 as the default.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 170:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 171: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 172: # Layout stuff:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 173: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 174: # You can "split" the current object of your focus with
2019-12-18 10:31:46 - [sway/config.c:764] Read line 175: # $mod+b or $mod+v, for horizontal and vertical splits
2019-12-18 10:31:46 - [sway/config.c:764] Read line 176: # respectively.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 177: bindsym $mod+b splith
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+b splith
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+b splith
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+b to command `splith` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 178: bindsym $mod+v splitv
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+v splitv
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+v splitv
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+v to command `splitv` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 179:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 180: # Switch the current container between different layout styles
2019-12-18 10:31:46 - [sway/config.c:764] Read line 181: bindsym $mod+s layout stacking
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+s layout stacking
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+s layout stacking
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 182: bindsym $mod+w layout tabbed
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+w layout tabbed
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+w layout tabbed
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 183: bindsym $mod+e layout toggle split
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+e layout toggle split
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+e layout toggle split
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 184:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 185: # Make the current focus fullscreen
2019-12-18 10:31:46 - [sway/config.c:764] Read line 186: bindsym $mod+f fullscreen
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+f fullscreen
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+f fullscreen
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 187:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 188: # Toggle the current focus between tiling and floating mode
2019-12-18 10:31:46 - [sway/config.c:764] Read line 189: bindsym $mod+Shift+space floating toggle
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+space floating toggle
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+space floating toggle
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 190:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 191: # Swap focus between the tiling area and the floating area
2019-12-18 10:31:46 - [sway/config.c:764] Read line 192: bindsym $mod+space focus mode_toggle
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+space focus mode_toggle
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+space focus mode_toggle
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 193:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 194: # move focus to the parent container
2019-12-18 10:31:46 - [sway/config.c:764] Read line 195: bindsym $mod+a focus parent
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+a focus parent
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+a focus parent
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+a to command `focus parent` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 196:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 197: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 198: # Scratchpad:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 199: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 200: # Sway has a "scratchpad", which is a bag of holding for windows.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 201: # You can send windows there and get them back later.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 202:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 203: # Move the currently focused window to the scratchpad
2019-12-18 10:31:46 - [sway/config.c:764] Read line 204: bindsym $mod+Shift+minus move scratchpad
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+Shift+minus move scratchpad
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+Shift+minus move scratchpad
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 205:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 206: # Show the next scratchpad window or hide the focused scratchpad window.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 207: # If there are multiple scratchpad windows, this command cycles through them.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 208: bindsym $mod+minus scratchpad show
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+minus scratchpad show
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+minus scratchpad show
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 209:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 210: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 211: # Resizing containers:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 212: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 213: mode "resize" {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'mode "resize"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 214: # left will shrink the containers width
2019-12-18 10:31:46 - [sway/config.c:764] Read line 215: # right will grow the containers width
2019-12-18 10:31:46 - [sway/config.c:764] Read line 216: # up will shrink the containers height
2019-12-18 10:31:46 - [sway/config.c:764] Read line 217: # down will grow the containers height
2019-12-18 10:31:46 - [sway/config.c:764] Read line 218: bindsym $left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym $left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym h resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym h resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound h to command `resize shrink width 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 219: bindsym $down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym $down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym j resize grow height 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym j resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound j to command `resize grow height 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 220: bindsym $up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym $up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym k resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym k resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound k to command `resize shrink height 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 221: bindsym $right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym $right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym l resize grow width 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym l resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound l to command `resize grow width 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 222:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 223: # ditto, with arrow keys
2019-12-18 10:31:46 - [sway/config.c:764] Read line 224: bindsym Left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Left resize shrink width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 225: bindsym Down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Down resize grow height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Down to command `resize grow height 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 226: bindsym Up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Up resize shrink height 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 227: bindsym Right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Right resize grow width 10px
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Right to command `resize grow width 10px` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 228:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 229: # return to default mode
2019-12-18 10:31:46 - [sway/config.c:764] Read line 230: bindsym Return mode "default"
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Return mode "default"
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Return mode "default"
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Return mode "default"
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Return to command `mode "default"` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 231: bindsym Escape mode "default"
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: mode "resize" bindsym Escape mode "default"
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(mode)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: mode "resize" bindsym Escape mode "default"
2019-12-18 10:31:46 - [sway/commands/mode.c:68] Switching to mode `resize' (pango=0)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: bindsym Escape mode "default"
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Escape to command `mode "default"` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 232: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'mode "resize"'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 233: bindsym $mod+r mode "resize"
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bindsym $mod+r mode "resize"
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bindsym)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bindsym Mod4+r mode "resize"
2019-12-18 10:31:46 - [sway/commands/bind.c:288] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 234:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 235: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 236: # Status Bar:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 237: #
2019-12-18 10:31:46 - [sway/config.c:764] Read line 238: # Read `man 5 sway-bar` for more information about this section.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 239: bar {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'bar'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 240: position top
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bar position top
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bar position top
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(top)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(top)
2019-12-18 10:31:46 - [sway/commands/bar.c:113] Creating bar bar-0
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(position)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: position top
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(position)
2019-12-18 10:31:46 - [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0
2019-12-18 10:31:46 - [sway/config.c:764] Read line 241:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 242: # When the status_command prints a new line to stdout, swaybar updates.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 243: # The default just shows the current date and time.
2019-12-18 10:31:46 - [sway/config.c:764] Read line 244: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bar status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(while)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(while)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(status_command)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(status_command)
2019-12-18 10:31:46 - [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
2019-12-18 10:31:46 - [sway/config.c:764] Read line 245:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 246: colors {
2019-12-18 10:31:46 - [sway/config.c:818] Entering block 'bar colors'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 247: statusline #ffffff
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bar colors statusline #ffffff
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bar colors statusline #ffffff
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: colors statusline #ffffff
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: statusline #ffffff
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(statusline)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 248: background #323232
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bar colors background #323232
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bar colors background #323232
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: colors background #323232
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: background #323232
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(background)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 249: inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(bar)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(colors)
2019-12-18 10:31:46 - [sway/commands.c:413] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(inactive_workspace)
2019-12-18 10:31:46 - [sway/config.c:764] Read line 250: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'bar colors'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 251: }
2019-12-18 10:31:46 - [sway/config.c:835] Exiting block 'bar'
2019-12-18 10:31:46 - [sway/config.c:764] Read line 252:
2019-12-18 10:31:46 - [sway/config.c:764] Read line 253: include /etc/sway/config.d/*
2019-12-18 10:31:46 - [sway/commands.c:362] Config command: include /etc/sway/config.d/*
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(include)
2019-12-18 10:31:46 - [sway/commands.c:382] After replacement: include /etc/sway/config.d/*
2019-12-18 10:31:46 - [sway/config.c:564] /etc/sway/config.d/* not found.
2019-12-18 10:31:46 - [sway/server.c:177] Initializing Xwayland
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:241] Loaded cursor theme 'default', available cursors:
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] default (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ne-resize (1 images) 24x24+15,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ll_angle (1 images) 24x24+4,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-no-drop (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] grab (1 images) 24x24+11,7
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_side (1 images) 24x24+13,18
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] text (1 images) 24x24+11,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] target (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_left_corner (1 images) 24x24+10,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_left_corner (1 images) 24x24+10,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nw-resize (1 images) 24x24+10,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] context-menu (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_side (1 images) 24x24+19,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_right_corner (1 images) 24x24+15,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] w-resize (1 images) 24x24+6,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_down_arrow (1 images) 24x24+12,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cross_reverse (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] not-allowed (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_ver (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] X_cursor (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] plus (1 images) 24x24+10,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-copy (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] s-resize (1 images) 24x24+13,18
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_fdiag (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] circle (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand1 (1 images) 24x24+11,7
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] grabbing (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] move (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] e-resize (1 images) 24x24+19,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_tee (1 images) 24x24+12,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pointer-move (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-move (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] progress (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] watch (60 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_right_corner (1 images) 24x24+15,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_side (1 images) 24x24+6,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] link (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand2 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-ask (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] n-resize (1 images) 24x24+13,6
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] crossed_circle (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ur_angle (1 images) 24x24+20,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nesw-resize (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] crosshair (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cross (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ul_angle (1 images) 24x24+4,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draft_large (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_left_arrow (1 images) 24x24+6,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr_watch (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] col-resize (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fleur (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 00008160000006810000408080010102 (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_left_arrow (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cell (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_up_arrow (1 images) 24x24+12,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_all (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] copy (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_ptr (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_right_arrow (1 images) 24x24+19,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] diamond_cross (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] row-resize (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] lr_angle (1 images) 24x24+20,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pointer (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_bdiag (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-link (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_tee (1 images) 24x24+20,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] se-resize (1 images) 24x24+15,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] zoom-out (1 images) 24x24+11,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ns-resize (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pencil (1 images) 24x24+7,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] xterm (1 images) 24x24+11,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_hor (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] all-scroll (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] icon (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dotbox (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] wait (60 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draft_small (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sw-resize (1 images) 24x24+10,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_tee (1 images) 24x24+6,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] zoom-in (1 images) 24x24+11,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] help (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] arrow (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] question_arrow (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nwse-resize (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] no-drop (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_tee (1 images) 24x24+12,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ew-resize (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_side (1 images) 24x24+13,6
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr_help (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] alias (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] tcross (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dot_box_mask (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draped_box (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pirate (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-none (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] vertical-text (1 images) 24x24+12,11
2019-12-18 10:31:46 - [sway/server.c:203] Starting backend on wayland display 'wayland-1'
2019-12-18 10:31:46 - [backend/wayland/backend.c:99] Initializating wayland backend
2019-12-18 10:31:46 - [sway/input/input-manager.c:572] adding device: '0:0:wayland'
2019-12-18 10:31:46 - [sway/input/input-manager.c:166] no fallback seat config - creating default
2019-12-18 10:31:46 - [sway/config/seat.c:58] Adding non-wildcard seat config
2019-12-18 10:31:46 - [sway/config/seat.c:75] Config stored for seat seat0
2019-12-18 10:31:46 - [sway/input/input-manager.c:782] applying seat config for seat seat0
2019-12-18 10:31:46 - [sway/input/seat.c:697] adding device 0:0:wayland to seat seat0
2019-12-18 10:31:46 - [GLES2] FS SIMD8 shader: 5 inst, 0 loops, 24 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2019-12-18 10:31:46 - [GLES2] FS SIMD16 shader: 5 inst, 0 loops, 34 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 80 to 48 bytes.
2019-12-18 10:31:46 - [GLES2] VS SIMD8 shader: 28 inst, 0 loops, 116 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 448 to 336 bytes.
2019-12-18 10:31:46 - [GLES2] FS SIMD16 shader: 2 inst, 0 loops, 0 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 32 to 32 bytes.
2019-12-18 10:31:46 - [sway/desktop/output.c:609] New output 0x55cf97da4af0: WL-1
2019-12-18 10:31:46 - [sway/tree/workspace.c:291] Workspace: Generating new workspace name for output WL-1
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '1'
2019-12-18 10:31:46 - [sway/tree/workspace.c:282] Workspace: Found free name 1
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '2'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '3'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '4'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '5'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '6'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '7'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '8'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '9'
2019-12-18 10:31:46 - [sway/tree/workspace.c:226] Got valid workspace command for target: '10'
2019-12-18 10:31:46 - [sway/tree/output.c:132] Creating default workspace 1
2019-12-18 10:31:46 - [sway/tree/workspace.c:78] Adding workspace 1 for output WL-1
2019-12-18 10:31:46 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 1280x720@0,0
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 1280x720@0,0
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:31:46 - [sway/desktop/transaction.c:411] Transaction 0x55cf97e06fc0 committing with 2 instructions
2019-12-18 10:31:46 - [sway/desktop/transaction.c:280] Applying transaction 0x55cf97e06fc0
2019-12-18 10:31:46 - [sway/input/input-manager.c:572] adding device: '0:0:wayland'
2019-12-18 10:31:46 - [sway/input/seat.c:697] adding device 0:0:wayland to seat seat0
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:241] Loaded cursor theme 'default', available cursors:
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 3085a0e285430894940527032f8b26df (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] d9ce0ab605698f320427677b458ad60b (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] default (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ne-resize (1 images) 24x24+15,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ll_angle (1 images) 24x24+4,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-no-drop (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] grab (1 images) 24x24+11,7
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_side (1 images) 24x24+13,18
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] text (1 images) 24x24+11,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] target (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_left_corner (1 images) 24x24+10,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_left_corner (1 images) 24x24+10,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nw-resize (1 images) 24x24+10,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] context-menu (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_side (1 images) 24x24+19,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_right_corner (1 images) 24x24+15,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] w-resize (1 images) 24x24+6,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_down_arrow (1 images) 24x24+12,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cross_reverse (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] not-allowed (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_ver (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] X_cursor (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] plus (1 images) 24x24+10,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-copy (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] s-resize (1 images) 24x24+13,18
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_fdiag (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] circle (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand1 (1 images) 24x24+11,7
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] grabbing (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] move (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] e-resize (1 images) 24x24+19,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_tee (1 images) 24x24+12,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 14fef782d02440884392942c11205230 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 3ecb610c1bf2410f44200f48c40d3599 (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pointer-move (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-move (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bd_double_arrow (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] progress (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] watch (60 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] bottom_right_corner (1 images) 24x24+15,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 1081e37283d90000800003c07f3ef6bf (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_side (1 images) 24x24+6,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] link (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] hand2 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 9081237383d90e509aa00f00170e968f (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-ask (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] n-resize (1 images) 24x24+13,6
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] crossed_circle (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ur_angle (1 images) 24x24+20,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 028006030e0e7ebffc7f7070c0600140 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nesw-resize (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] crosshair (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cross (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ul_angle (1 images) 24x24+4,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draft_large (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] c7088f0f3e6c8088236ef8e1e3e70000 (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_left_arrow (1 images) 24x24+6,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 03b6e0fcb3499374a867c041f52298f0 (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr_watch (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] col-resize (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 6407b0e94181790501fd1e167b474872 (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fleur (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 2870a09082c103050810ffdffffe0204 (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 00008160000006810000408080010102 (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_left_arrow (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] cell (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_up_arrow (1 images) 24x24+12,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_all (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 08e8e1c95fe2fc01f976f1e063a24ccd (60 images) 24x24+4,3
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] copy (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_ptr (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_right_arrow (1 images) 24x24+19,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] diamond_cross (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] row-resize (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] lr_angle (1 images) 24x24+20,19
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] e29285e634086352946a0e7090d73106 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pointer (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 5c6cd98b3f3ebcb1f9c7f1c204630408 (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_bdiag (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] fcf1c3c7cd4491d801f1e1c78f100000 (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 640fb0e74195791501fd1ed57b41487f (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-link (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] right_tee (1 images) 24x24+20,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_h_double_arrow (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 4498f0e0c1937ffe01fd06f973665830 (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] se-resize (1 images) 24x24+15,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] zoom-out (1 images) 24x24+11,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ns-resize (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pencil (1 images) 24x24+7,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] xterm (1 images) 24x24+11,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] size_hor (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] all-scroll (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] icon (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dotbox (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] wait (60 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draft_small (1 images) 24x24+21,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sw-resize (1 images) 24x24+10,15
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_tee (1 images) 24x24+6,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] zoom-in (1 images) 24x24+11,10
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] help (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] arrow (1 images) 24x24+4,4
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] question_arrow (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] nwse-resize (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] no-drop (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_tee (1 images) 24x24+12,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] sb_v_double_arrow (1 images) 24x24+12,13
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] ew-resize (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] top_side (1 images) 24x24+13,6
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] left_ptr_help (1 images) 24x24+12,21
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] alias (1 images) 24x24+9,9
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] tcross (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dot_box_mask (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] draped_box (1 images) 24x24+11,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] pirate (1 images) 24x24+12,12
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] dnd-none (1 images) 24x24+12,11
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] 9d800788f1b08800ae810202380a0822 (1 images) 24x24+8,5
2019-12-18 10:31:46 - [xcursor/wlr_xcursor.c:246] vertical-text (1 images) 24x24+12,11
2019-12-18 10:31:46 - [sway/input/seat.c:543] Mapping input device 0:0:wayland to output WL-1
2019-12-18 10:31:46 - [sway/input/seat.c:555] Mapped to output WL-1
2019-12-18 10:31:46 - [GLES2] FS SIMD8 shader: 14 inst, 0 loops, 308 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2019-12-18 10:31:46 - [GLES2] FS SIMD16 shader: 14 inst, 0 loops, 322 cycles, 0:0 spills:fills, scheduled with mode top-down, Promoted 0 constants, compacted 224 to 176 bytes.
2019-12-18 10:31:46 - [sway/config/bar.c:251] Invoking swaybar for bar id 'bar-0'
2019-12-18 10:31:46 - [sway/config/bar.c:230] Spawned swaybar 31248
2019-12-18 10:31:46 - [sway/config.c:631] Running deferred commands
2019-12-18 10:31:46 - [sway/commands.c:258] 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''
2019-12-18 10:31:46 - [sway/commands.c:150] find_handler(exec)
2019-12-18 10:31:46 - [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'
2019-12-18 10:31:46 - [sway/commands/exec_always.c:87] Child process created with pid 31250
2019-12-18 10:31:46 - [sway/tree/root.c:270] Recording workspace for process 31250
2019-12-18 10:31:46 - [sway/server.c:214] Running compositor on wayland display 'wayland-1'
2019-12-18 10:31:46 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:31:46 - [sway/desktop/transaction.c:411] Transaction 0x55cf97c7be00 committing with 1 instructions
2019-12-18 10:31:46 - [sway/desktop/transaction.c:280] Applying transaction 0x55cf97c7be00
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 636x1031@0,0
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 0.000000
2019-12-18 10:31:46 - [sway/desktop/transaction.c:411] Transaction 0x55cf97c7be00 committing with 1 instructions
2019-12-18 10:31:46 - [sway/desktop/transaction.c:280] Applying transaction 0x55cf97c7be00
2019-12-18 10:31:46 - [main.c:299] Found config * for output WL-1 (wayland wayland )
2019-12-18 10:31:46 - [types/wlr_surface.c:609] New wlr_surface 0x55cf97e2cbc0 (res 0x55cf97ddc5c0)
2019-12-18 10:31:46 - [types/wlr_layer_shell_v1.c:387] new layer_surface 0x55cf97e2ca10 (res 0x55cf97e01bb0)
2019-12-18 10:31:46 - [sway/desktop/layer_shell.c:360] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0
2019-12-18 10:31:46 - [sway/ipc-server.c:154] Event on IPC listening socket
2019-12-18 10:31:46 - [sway/ipc-server.c:200] New client: fd 24
2019-12-18 10:31:46 - [sway/ipc-server.c:154] Event on IPC listening socket
2019-12-18 10:31:46 - [sway/ipc-server.c:200] New client: fd 26
2019-12-18 10:31:46 - [sway/ipc-server.c:220] Client 24 readable
2019-12-18 10:31:46 - [sway/ipc-server.c:920] Added IPC reply of type 0x6 to client 24 queue: { "id": "bar-0", "mode": "dock", "hidden_state": "hide", "position": "top", "status_command": "while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done", "font": "monospace 10", "gaps": { "top": 0, "right": 0, "bottom": 0, "left": 0 }, "bar_height": 0, "status_padding": 1, "status_edge_padding": 3, "wrap_scroll": false, "workspace_buttons": true, "strip_workspace_numbers": false, "strip_workspace_name": false, "binding_mode_indicator": true, "verbose": false, "pango_markup": false, "colors": { "background": "#323232ff", "statusline": "#ffffffff", "separator": "#666666ff", "focused_background": "#323232ff", "focused_statusline": "#ffffffff", "focused_separator": "#666666ff", "focused_workspace_border": "#4c7899ff", "focused_workspace_bg": "#285577ff", "focused_workspace_text": "#ffffffff", "inactive_workspace_border": "#32323200", "inactive_workspace_bg": "#32323200", "inactive_workspace_text": "#5c5c5cff", "active_workspace_border": "#333333ff", "active_workspace_bg": "#5f676aff", "active_workspace_text": "#ffffffff", "urgent_workspace_border": "#2f343aff", "urgent_workspace_bg": "#900000ff", "urgent_workspace_text": "#ffffffff", "binding_mode_border": "#2f343aff", "binding_mode_bg": "#900000ff", "binding_mode_text": "#ffffffff" }, "tray_padding": 2 }
2019-12-18 10:31:46 - [sway/ipc-server.c:509] Client 24 writable
2019-12-18 10:31:46 - [sway/ipc-server.c:220] Client 24 readable
2019-12-18 10:31:46 - [sway/ipc-server.c:920] Added IPC reply of type 0x3 to client 24 queue: [ { "id": 3, "name": "WL-1", "rect": { "x": 0, "y": 0, "width": 636, "height": 1031 }, "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, "primary": false, "make": "wayland", "model": "wayland", "serial": "", "scale": 1.0, "transform": "normal", "current_workspace": "1", "modes": [ ], "current_mode": { "width": 636, "height": 1031, "refresh": 0 }, "focused": true, "subpixel_hinting": "unknown" } ]
2019-12-18 10:31:46 - [sway/ipc-server.c:509] Client 24 writable
2019-12-18 10:31:46 - [sway/ipc-server.c:220] Client 26 readable
2019-12-18 10:31:46 - [sway/ipc-server.c:920] Added IPC reply of type 0x2 to client 26 queue: {"success": true}
2019-12-18 10:31:46 - [sway/ipc-server.c:509] Client 26 writable
2019-12-18 10:31:46 - [swaybar/tray/watcher.c:185] Failed to acquire service name: File exists
2019-12-18 10:31:46 - [swaybar/tray/watcher.c:185] Failed to acquire service name: File exists
Got sleep lock: 11
2019-12-18 10:31:46 - [sway/ipc-server.c:220] Client 24 readable
2019-12-18 10:31:46 - [sway/ipc-server.c:920] Added IPC reply of type 0x1 to client 24 queue: [ { "id": 4, "name": "1", "rect": { "x": 0, "y": 0, "width": 636, "height": 1031 }, "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": "WL-1", "type": "workspace", "representation": null, "focused": true, "visible": true } ]
2019-12-18 10:31:46 - [sway/ipc-server.c:509] Client 24 writable
2019-12-18 10:31:46 - [types/wlr_surface.c:609] New wlr_surface 0x55cf97e2c2f0 (res 0x55cf97e29100)
2019-12-18 10:31:46 - [types/wlr_layer_shell_v1.c:387] new layer_surface 0x55cf97e28af0 (res 0x55cf97da45f0)
2019-12-18 10:31:46 - [sway/desktop/layer_shell.c:360] new layer surface: namespace panel layer 1 anchor 1 size 0x22 margin 0,0,0,0
2019-12-18 10:31:46 - [sway/desktop/layer_shell.c:178] Usable area changed, rearranging output
2019-12-18 10:31:46 - [sway/tree/arrange.c:189] Usable area for ws: 636x1009@0,22
2019-12-18 10:31:46 - [sway/tree/arrange.c:220] Arranging workspace '1' at 0.000000, 22.000000
2019-12-18 10:31:46 - [sway/desktop/transaction.c:411] Transaction 0x55cf97e2cb80 committing with 1 instructions
2019-12-18 10:31:46 - [sway/desktop/transaction.c:280] Applying transaction 0x55cf97e2cb80
2019-12-18 10:31:46 - [types/wlr_surface.c:609] New wlr_surface 0x55cf97e273f0 (res 0x55cf97e43830)
2019-12-18 10:31:46 - [swaybar/tray/host.c:24] Registering Status Notifier Item ':1.10/org/ayatana/NotificationItem/Slack1'
2019-12-18 10:31:46 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 IconPixmap: No such property “IconPixmap”
2019-12-18 10:31:46 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 AttentionIconPixmap: No such property “AttentionIconPixmap”
2019-12-18 10:31:46 - [swaybar/tray/item.c:127] :1.10/org/ayatana/NotificationItem/Slack1 ItemIsMenu: No such property “ItemIsMenu”
2019-12-18 10:31:51 - [backend/wayland/backend.c:63] Remote wayland global: wl_output v3
2019-12-18 10:31:59 - [common/ipc-client.c:88] Unable to receive IPC response
date: write error: Broken pipe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment