Created
January 19, 2024 20:03
-
-
Save Quackdoc/724358784a7cc765dcf6a0ee9015244d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default config for sway | |
# | |
# Copy this to ~/.config/sway/config and edit it to your liking. | |
# | |
# Read `man 5 sway` for a complete reference. | |
### Variables | |
# | |
# Logo key. Use Mod1 for Alt. | |
set $mod Mod4 | |
# Home row direction keys, like vim | |
set $left h | |
set $down j | |
set $up k | |
set $right l | |
# Your preferred terminal emulator | |
set $term kitty | |
# Your preferred application launcher | |
# Note: pass the final command to swaymsg so that the resulting window can be opened | |
# on the original workspace that the command was run on. | |
set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
#set $menu "busctl --user call com.system76.CosmicWorkspaces /com/system76/CosmicWorkspaces com.system76.CosmicWorkspaces toggle" | |
exec cosmic-app-library | |
### Output configuration | |
# | |
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) | |
output * bg ~/Pictures/mpv/save/reine.png fill | |
# | |
# Example configuration: | |
# | |
# output HDMI-A-1 resolution 1920x1080 position 1920,0 | |
# | |
# You can get the names of your outputs by running: swaymsg -t get_outputs | |
#output DP-5 scale 1.5 position 1280,0 | |
output DP-3 scale 1.4 position 1280,0 | |
#output HDMI-A-2 resolution 1280x960 position 0,260 | |
output HDMI-A-6 resolution 1280x960 position 0,260 | |
### Idle configuration | |
# | |
# Example configuration: | |
# | |
# exec swayidle -w \ | |
# timeout 300 'swaylock -f -c 000000' \ | |
# timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ | |
# before-sleep 'swaylock -f -c 000000' | |
# | |
# This will lock your screen after 300 seconds of inactivity, then turn off | |
# your displays after another 300 seconds, and turn your screens back on when | |
# resumed. It will also lock your screen before your computer goes to sleep. | |
### Input configuration | |
# | |
# Example configuration: | |
# | |
# input "2:14:SynPS/2_Synaptics_TouchPad" { | |
# dwt enabled | |
# tap enabled | |
# natural_scroll enabled | |
# middle_emulation enabled | |
# } | |
# | |
# You can get the names of your inputs by running: swaymsg -t get_inputs | |
# Read `man 5 sway-input` for more information about this section. | |
input "8746:1:ILITEK_ILITEK-TP" { | |
map_to_output HDMI-A-6 | |
} | |
input "8746:1:ILITEK_ILITEK-TP_Mouse" { | |
map_to_output HDMI-A-6 | |
} | |
### Key bindings | |
# | |
# Basics: | |
# | |
# Start a terminal | |
bindsym $mod+Return exec $term | |
# Kill focused window | |
bindsym $mod+Shift+q kill | |
# Start your launcher | |
bindsym $mod+d exec $menu | |
# Drag floating windows by holding down $mod and left mouse button. | |
# Resize them with right mouse button + $mod. | |
# Despite the name, also works for non-floating windows. | |
# Change normal to inverse to use left mouse button for resizing and right | |
# mouse button for dragging. | |
floating_modifier $mod normal | |
# Reload the configuration file | |
bindsym $mod+Shift+c reload | |
# Exit sway (logs you out of your Wayland session) | |
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
# | |
# Moving around: | |
# | |
# Move your focus around | |
bindsym $mod+$left focus left | |
bindsym $mod+$down focus down | |
bindsym $mod+$up focus up | |
#bindsym $mod+$right focus right | |
# Or use $mod+[up|down|left|right] | |
bindsym $mod+Left focus left | |
bindsym $mod+Down focus down | |
bindsym $mod+Up focus up | |
bindsym $mod+Right focus right | |
# Move the focused window with the same, but add Shift | |
bindsym $mod+Shift+$left move left | |
bindsym $mod+Shift+$down move down | |
bindsym $mod+Shift+$up move up | |
bindsym $mod+Shift+$right move right | |
# Ditto, with arrow keys | |
bindsym $mod+Shift+Left move left | |
bindsym $mod+Shift+Down move down | |
bindsym $mod+Shift+Up move up | |
bindsym $mod+Shift+Right move right | |
# | |
# Workspaces: | |
# | |
# Switch to workspace | |
bindsym $mod+1 workspace number 1 | |
bindsym $mod+2 workspace number 2 | |
bindsym $mod+3 workspace number 3 | |
bindsym $mod+4 workspace number 4 | |
bindsym $mod+5 workspace number 5 | |
bindsym $mod+6 workspace number 6 | |
bindsym $mod+7 workspace number 7 | |
bindsym $mod+8 workspace number 8 | |
bindsym $mod+9 workspace number 9 | |
bindsym $mod+0 workspace number 10 | |
# Move focused container to workspace | |
bindsym $mod+Shift+1 move container to workspace number 1 | |
bindsym $mod+Shift+2 move container to workspace number 2 | |
bindsym $mod+Shift+3 move container to workspace number 3 | |
bindsym $mod+Shift+4 move container to workspace number 4 | |
bindsym $mod+Shift+5 move container to workspace number 5 | |
bindsym $mod+Shift+6 move container to workspace number 6 | |
bindsym $mod+Shift+7 move container to workspace number 7 | |
bindsym $mod+Shift+8 move container to workspace number 8 | |
bindsym $mod+Shift+9 move container to workspace number 9 | |
bindsym $mod+Shift+0 move container to workspace number 10 | |
# Note: workspaces can have any name you want, not just numbers. | |
# We just use 1-10 as the default. | |
workspace 1 output DP-3 | |
workspace 10 output HDMI-A-6 | |
workspace 9 output HDMI-A-6 | |
workspace 3 output DP-3 | |
workspace 4 output DP-3 | |
workspace 5 output DP-3 | |
workspace 6 output DP-3 | |
# | |
# 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 { | |
#swaybar_command waybar | |
position top | |
# When the status_command prints a new line to stdout, swaybar updates. | |
# The default just shows the current date and time. | |
status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
colors { | |
statusline #ffffff | |
background #323232 | |
inactive_workspace #32323200 #32323200 #5c5c5c | |
} | |
} | |
# | |
# screen capture | |
# | |
bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
bindsym $mod+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
#for_window [title="Smithay"] floating enable | |
include /etc/sway/config.d/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00:00:00.000 [INFO] [sway/main.c:294] Sway version 1.9-dev-5fc85c50 (Jan 18 2024, branch 'makepkg') | |
00:00:00.000 [INFO] [sway/main.c:295] wlroots version 0.18.0-dev | |
00:00:00.003 [INFO] [sway/main.c:82] Linux quackdock 6.7.0-zen3-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Sat, 13 Jan 2024 14:36:54 +0000 x86_64 GNU/Linux | |
00:00:00.003 [INFO] [sway/main.c:98] Contents of /etc/lsb-release: | |
00:00:00.003 [INFO] [sway/main.c:82] DISTRIB_ID="Arch" | |
00:00:00.004 [INFO] [sway/main.c:82] DISTRIB_RELEASE="rolling" | |
00:00:00.004 [INFO] [sway/main.c:82] DISTRIB_DESCRIPTION="Arch Linux" | |
00:00:00.004 [INFO] [sway/main.c:98] Contents of /etc/os-release: | |
00:00:00.004 [INFO] [sway/main.c:82] NAME="Arch Linux" | |
00:00:00.004 [INFO] [sway/main.c:82] PRETTY_NAME="Arch Linux" | |
00:00:00.004 [INFO] [sway/main.c:82] ID=arch | |
00:00:00.004 [INFO] [sway/main.c:82] BUILD_ID=rolling | |
00:00:00.004 [INFO] [sway/main.c:82] ANSI_COLOR="38;2;23;147;209" | |
00:00:00.004 [INFO] [sway/main.c:82] HOME_URL="https://archlinux.org/" | |
00:00:00.004 [INFO] [sway/main.c:82] DOCUMENTATION_URL="https://wiki.archlinux.org/" | |
00:00:00.004 [INFO] [sway/main.c:82] SUPPORT_URL="https://bbs.archlinux.org/" | |
00:00:00.004 [INFO] [sway/main.c:82] BUG_REPORT_URL="https://bugs.archlinux.org/" | |
00:00:00.004 [INFO] [sway/main.c:82] PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/" | |
00:00:00.004 [INFO] [sway/main.c:82] LOGO=archlinux-logo | |
00:00:00.004 [INFO] [sway/main.c:70] LD_LIBRARY_PATH= | |
00:00:00.004 [INFO] [sway/main.c:70] LD_PRELOAD= | |
00:00:00.004 [INFO] [sway/main.c:70] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:$HOME/.local/bin:/usr/lib/emscripten:/home/quack/.local/share/flatpak/exports/bin:/var/lib/flatpak/exports/bin:/opt/flutter/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/rustup/bin:/home/quack/.local/bin:/home/quack/.cargo/bin | |
00:00:00.004 [INFO] [sway/main.c:70] SWAYSOCK= | |
00:00:00.004 [INFO] [sway/main.c:331] Starting sway version 1.9-dev-5fc85c50 (Jan 18 2024, branch 'makepkg') | |
00:00:00.004 [DEBUG] [sway/server.c:166] Initializing Wayland server | |
00:00:00.004 [INFO] [wlr] [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory | |
00:00:00.004 [INFO] [wlr] [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping | |
00:00:00.026 [INFO] [wlr] [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind' | |
00:00:00.026 [INFO] [wlr] [backend/session/session.c:109] Successfully loaded libseat session | |
00:00:00.028 [INFO] [wlr] [backend/backend.c:212] Found 2 GPUs | |
00:00:00.028 [INFO] [wlr] [backend/drm/backend.c:203] Initializing DRM backend for /dev/dri/card1 (i915) | |
00:00:00.028 [DEBUG] [wlr] [backend/drm/drm.c:111] Using atomic DRM interface | |
00:00:00.028 [DEBUG] [wlr] [backend/drm/drm.c:124] ADDFB2 modifiers supported | |
00:00:00.028 [INFO] [wlr] [backend/drm/drm.c:256] Found 4 DRM CRTCs | |
00:00:00.028 [INFO] [wlr] [backend/drm/drm.c:214] Found 24 DRM planes | |
00:00:00.033 [INFO] [wlr] [backend/drm/backend.c:203] Initializing DRM backend for /dev/dri/card2 (amdgpu) | |
00:00:00.033 [DEBUG] [wlr] [backend/drm/drm.c:111] Using atomic DRM interface | |
00:00:00.033 [DEBUG] [wlr] [backend/drm/drm.c:124] ADDFB2 modifiers unsupported | |
00:00:00.033 [INFO] [wlr] [backend/drm/drm.c:256] Found 6 DRM CRTCs | |
00:00:00.034 [INFO] [wlr] [backend/drm/drm.c:214] Found 12 DRM planes | |
00:00:00.057 [INFO] [wlr] [render/egl.c:206] Supported EGL client extensions: EGL_EXT_platform_base EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_KHR_platform_x11 EGL_EXT_platform_x11 EGL_EXT_platform_device EGL_MESA_platform_surfaceless EGL_EXT_explicit_device EGL_KHR_platform_wayland EGL_EXT_platform_wayland EGL_KHR_platform_gbm EGL_MESA_platform_gbm EGL_EXT_platform_xcb | |
00:00:00.066 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.067 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.072 [DEBUG] [wlr] [render/egl.c:487] Using EGL device /dev/dri/card2 | |
00:00:00.117 [INFO] [wlr] [render/egl.c:355] Using EGL 1.5 | |
00:00:00.117 [INFO] [wlr] [render/egl.c:356] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_query_reset_notification_strategy EGL_IMG_context_priority EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_context_flush_control EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_gl_interop EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display | |
00:00:00.117 [INFO] [wlr] [render/egl.c:358] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node | |
00:00:00.117 [INFO] [wlr] [render/egl.c:360] EGL vendor: Mesa Project | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:121] Supported DMA-BUF formats: | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB4H (0x48344241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XB4H (0x48344258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB48 (0x38344241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XB48 (0x38344258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AR30 (0x30335241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XR30 (0x30335258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB30 (0x30334241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XB30 (0x30334258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AR24 (0x34325241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB24 (0x34324241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XR24 (0x34325258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] XB24 (0x34324258) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AR15 (0x35315241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB15 (0x35314241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AR12 (0x32315241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] AB12 (0x32314241) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] RG16 (0x36314752) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] R8 (0x20203852) | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.117 [DEBUG] [wlr] [render/egl.c:170] R16 (0x20363152) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] GR88 (0x38385247) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] GR32 (0x32335247) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YUV9 (0x39565559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YU11 (0x31315559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YU12 (0x32315559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YU16 (0x36315559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YU24 (0x34325559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YVU9 (0x39555659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YV11 (0x31315659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YV12 (0x32315659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YV16 (0x36315659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YV24 (0x34325659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] NV12 (0x3231564E) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] NV21 (0x3132564E) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] P010 (0x30313050) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] P012 (0x32313050) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] P016 (0x36313050) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] P030 (0x30333050) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] NV16 (0x3631564E) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] AYUV (0x56555941) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] XYUV (0x56555958) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y410 (0x30313459) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y412 (0x32313459) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y416 (0x36313459) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YUYV (0x56595559) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] YVYU (0x55595659) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] UYVY (0x59565955) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] VYUY (0x59555956) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y210 (0x30313259) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y212 (0x32313259) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:170] Y216 (0x36313259) | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.118 [DEBUG] [wlr] [render/egl.c:190] EGL DMA-BUF format modifiers unsupported | |
amdgpu: amdgpu_cs_ctx_create2 failed. (-13) | |
00:00:00.119 [DEBUG] [wlr] [render/egl.c:435] Obtained high priority context | |
00:00:00.119 [DEBUG] [wlr] [render/egl.c:536] Using EGL_PLATFORM_DEVICE_EXT | |
00:00:00.120 [INFO] [wlr] [render/gles2/renderer.c:548] Creating GLES2 renderer | |
00:00:00.120 [INFO] [wlr] [render/gles2/renderer.c:549] Using OpenGL ES 3.2 Mesa 24.1.0-devel (git-745282736e) | |
00:00:00.120 [INFO] [wlr] [render/gles2/renderer.c:550] GL vendor: AMD | |
00:00:00.120 [INFO] [wlr] [render/gles2/renderer.c:551] GL renderer: AMD Radeon RX 580 Series (radeonsi, polaris10, LLVM 16.0.6, DRM 3.56, 6.7.0-zen3-1-zen) | |
00:00:00.120 [INFO] [wlr] [render/gles2/renderer.c:552] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor 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_NV_pack_subimage GL_NV_texture_barrier GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_OES_viewport_array GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_APPLE_sync GL_EXT_draw_buffers GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_NV_generate_mipmap_sRGB GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_debug_label GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_group_vote GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_ANDROID_extension_pack_es31a GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_copy_image GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_gpu_shader5 GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box GL_EXT_render_snorm GL_EXT_shader_io_blocks GL_EXT_texture_border_clamp GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_texture_norm16 GL_EXT_texture_view GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_robust_buffer_access_behavior GL_NV_image_formats GL_NV_shader_noperspective_interpolation 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_EXT_texture_sRGB_R8 GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_OES_EGL_image_external_essl3 GL_OES_geometry_point_size GL_OES_geometry_shader GL_OES_shader_image_atomic GL_EXT_clear_texture GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_EXT_window_rectangles GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_NV_alpha_to_coverage_dither_control GL_AMD_framebuffer_multisample_advanced GL_EXT_EGL_image_storage GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_NV_compute_shader_derivatives GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_sampler_objects GL_MESA_bgra GL_MESA_texture_const_bandwidth | |
00:00:00.120 [DEBUG] [wlr] [render/gles2/renderer.c:607] GPU reset notifications are enabled | |
00:00:00.126 [DEBUG] [wlr] [render/allocator/allocator.c:107] Trying to create gbm allocator | |
00:00:00.133 [DEBUG] [wlr] [render/allocator/gbm.c:213] Created GBM allocator with backend drm | |
00:00:00.133 [DEBUG] [wlr] [render/allocator/gbm.c:216] Using DRM node /dev/dri/card2 | |
00:00:00.133 [INFO] [wlr] [render/egl.c:206] Supported EGL client extensions: EGL_EXT_platform_base EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_KHR_platform_x11 EGL_EXT_platform_x11 EGL_EXT_platform_device EGL_MESA_platform_surfaceless EGL_EXT_explicit_device EGL_KHR_platform_wayland EGL_EXT_platform_wayland EGL_KHR_platform_gbm EGL_MESA_platform_gbm EGL_EXT_platform_xcb | |
00:00:00.133 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.133 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.135 [DEBUG] [wlr] [render/egl.c:487] Using EGL device /dev/dri/card1 | |
00:00:00.144 [INFO] [wlr] [render/egl.c:355] Using EGL 1.5 | |
00:00:00.144 [INFO] [wlr] [render/egl.c:356] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_query_reset_notification_strategy EGL_IMG_context_priority EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_context_flush_control EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_gl_interop EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display | |
00:00:00.144 [INFO] [wlr] [render/egl.c:358] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node | |
00:00:00.144 [INFO] [wlr] [render/egl.c:360] EGL vendor: Mesa Project | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:121] Supported DMA-BUF formats: | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AB4H (0x48344241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] XB4H (0x48344258) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AB48 (0x38344241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] XB48 (0x38344258) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AR30 (0x30335241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] XR30 (0x30335258) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AB30 (0x30334241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AR24 (0x34325241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AB24 (0x34324241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] XR24 (0x34325258) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] XB24 (0x34324258) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AR15 (0x35315241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] AR12 (0x32315241) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] RG16 (0x36314752) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] R8 (0x20203852) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] R16 (0x20363152) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] GR88 (0x38385247) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] GR32 (0x32335247) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] YUV9 (0x39565559) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] YU11 (0x31315559) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:170] YU12 (0x32315559) | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.144 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YU16 (0x36315559) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YU24 (0x34325559) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YVU9 (0x39555659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YV11 (0x31315659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YV12 (0x32315659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YV16 (0x36315659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YV24 (0x34325659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] NV12 (0x3231564E) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] NV21 (0x3132564E) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] P010 (0x30313050) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] P012 (0x32313050) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] P016 (0x36313050) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] P030 (0x30333050) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] NV16 (0x3631564E) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] AYUV (0x56555941) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] XYUV (0x56555958) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y410 (0x30313459) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y412 (0x32313459) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y416 (0x36313459) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YUYV (0x56595559) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] YVYU (0x55595659) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] UYVY (0x59565955) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] VYUY (0x59555956) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y210 (0x30313259) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y212 (0x32313259) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:170] Y216 (0x36313259) | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.145 [DEBUG] [wlr] [render/egl.c:190] EGL DMA-BUF format modifiers supported | |
00:00:00.146 [DEBUG] [wlr] [render/egl.c:435] Obtained high priority context | |
00:00:00.146 [DEBUG] [wlr] [render/egl.c:536] Using EGL_PLATFORM_DEVICE_EXT | |
00:00:00.146 [INFO] [wlr] [render/gles2/renderer.c:548] Creating GLES2 renderer | |
00:00:00.146 [INFO] [wlr] [render/gles2/renderer.c:549] Using OpenGL ES 3.2 Mesa 24.1.0-devel (git-745282736e) | |
00:00:00.146 [INFO] [wlr] [render/gles2/renderer.c:550] GL vendor: Intel | |
00:00:00.146 [INFO] [wlr] [render/gles2/renderer.c:551] GL renderer: Mesa Intel(R) Arc(tm) A380 Graphics (DG2) | |
00:00:00.146 [INFO] [wlr] [render/gles2/renderer.c:552] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor 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_NV_pack_subimage GL_NV_texture_barrier GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_OES_viewport_array GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_APPLE_sync GL_EXT_draw_buffers GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_NV_generate_mipmap_sRGB GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_debug_label GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_framebuffer_fetch GL_EXT_shader_group_vote GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_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_NV_shader_noperspective_interpolation 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_EXT_texture_sRGB_R8 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_clear_texture GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_NV_alpha_to_coverage_dither_control GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_NV_compute_shader_derivatives GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_sampler_objects GL_MESA_bgra GL_MESA_texture_const_bandwidth | |
00:00:00.146 [DEBUG] [wlr] [render/gles2/renderer.c:607] GPU reset notifications are enabled | |
00:00:00.148 [DEBUG] [wlr] [render/allocator/allocator.c:107] Trying to create gbm allocator | |
00:00:00.154 [DEBUG] [wlr] [render/allocator/gbm.c:213] Created GBM allocator with backend drm | |
00:00:00.154 [DEBUG] [wlr] [render/allocator/gbm.c:216] Using DRM node /dev/dri/card1 | |
00:00:00.154 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:635] Creating wlr_drm_lease_device_v1 for /dev/dri/card1 | |
00:00:00.154 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:635] Creating wlr_drm_lease_device_v1 for /dev/dri/card2 | |
00:00:00.154 [INFO] [wlr] [backend/headless/backend.c:67] Creating headless backend | |
00:00:00.157 [INFO] [sway/config.c:416] Loading config from /home/quack/.config/sway/config | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 1: # Default config for sway | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 2: # | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking. | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 4: # | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 5: # Read `man 5 sway` for a complete reference. | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 6: | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 7: ### Variables | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 8: # | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 9: # Logo key. Use Mod1 for Alt. | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 10: set $mod Mod4 | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $mod Mod4 | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $mod Mod4 | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 11: # Home row direction keys, like vim | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 12: set $left h | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $left h | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $left h | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 13: set $down j | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $down j | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $down j | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 14: set $up k | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $up k | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $up k | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 15: set $right l | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $right l | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $right l | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 16: # Your preferred terminal emulator | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 17: set $term kitty | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $term kitty | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $term kitty | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 18: # Your preferred application launcher | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 20: # on the original workspace that the command was run on. | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 21: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 22: #set $menu "busctl --user call com.system76.CosmicWorkspaces /com/system76/CosmicWorkspaces com.system76.CosmicWorkspaces toggle" | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 23: | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 24: exec cosmic-app-library | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: exec cosmic-app-library | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: exec cosmic-app-library | |
00:00:00.157 [DEBUG] [sway/config.c:877] Deferring command `exec cosmic-app-library' | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 25: ### Output configuration | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 26: # | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 27: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) | |
00:00:00.157 [DEBUG] [sway/config.c:833] Read line 28: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.157 [INFO] [sway/commands.c:381] Config command: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.157 [INFO] [sway/commands.c:404] After replacement: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.157 [DEBUG] [sway/commands.c:436] Subcommand: bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.157 [DEBUG] [sway/config/output.c:231] Adding output * config | |
00:00:00.157 [DEBUG] [sway/config/output.c:235] Config stored for output * (enabled: -1) ([email protected] position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[0] = swaybg | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[1] = -o | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[2] = * | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[3] = -i | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[4] = /home/quack/Pictures/mpv/save/reine.png | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[5] = -m | |
00:00:00.157 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[6] = fill | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 29: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 30: # Example configuration: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 31: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 32: # output HDMI-A-1 resolution 1920x1080 position 1920,0 | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 33: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 34: # You can get the names of your outputs by running: swaymsg -t get_outputs | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 35: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 36: #output DP-5 scale 1.5 position 1280,0 | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 37: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.163 [INFO] [sway/commands.c:381] Config command: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.163 [INFO] [sway/commands.c:404] After replacement: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.163 [DEBUG] [sway/commands.c:436] Subcommand: scale 1.4 position 1280,0 | |
00:00:00.163 [DEBUG] [sway/commands.c:436] Subcommand: position 1280,0 | |
00:00:00.163 [DEBUG] [sway/config/output.c:218] Adding non-wildcard output config | |
00:00:00.163 [DEBUG] [sway/config/output.c:221] Merging on top of output * config | |
00:00:00.163 [DEBUG] [sway/config/output.c:235] Config stored for output DP-3 (enabled: -1) ([email protected] position 1280,0 scale 1.400000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 38: #output HDMI-A-2 resolution 1280x960 position 0,260 | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 39: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.163 [INFO] [sway/commands.c:381] Config command: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.163 [INFO] [sway/commands.c:404] After replacement: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.163 [DEBUG] [sway/commands.c:436] Subcommand: resolution 1280x960 position 0,260 | |
00:00:00.163 [DEBUG] [sway/commands.c:436] Subcommand: position 0,260 | |
00:00:00.163 [DEBUG] [sway/config/output.c:218] Adding non-wildcard output config | |
00:00:00.163 [DEBUG] [sway/config/output.c:221] Merging on top of output * config | |
00:00:00.163 [DEBUG] [sway/config/output.c:235] Config stored for output HDMI-A-6 (enabled: -1) ([email protected] position 0,260 scale -1.000000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 40: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 41: ### Idle configuration | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 42: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 43: # Example configuration: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 44: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 45: # exec swayidle -w \ | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 46: # timeout 300 'swaylock -f -c 000000' \ | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 47: # timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 48: # before-sleep 'swaylock -f -c 000000' | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 49: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 50: # This will lock your screen after 300 seconds of inactivity, then turn off | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 51: # your displays after another 300 seconds, and turn your screens back on when | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 52: # resumed. It will also lock your screen before your computer goes to sleep. | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 53: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 54: ### Input configuration | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 55: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 56: # Example configuration: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 57: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 58: # input "2:14:SynPS/2_Synaptics_TouchPad" { | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 59: # dwt enabled | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 60: # tap enabled | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 61: # natural_scroll enabled | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 62: # middle_emulation enabled | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 63: # } | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 64: # | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 65: # You can get the names of your inputs by running: swaymsg -t get_inputs | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 66: # Read `man 5 sway-input` for more information about this section. | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 67: | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 68: input "8746:1:ILITEK_ILITEK-TP" { | |
00:00:00.163 [DEBUG] [sway/config.c:887] Entering block 'input "8746:1:ILITEK_ILITEK-TP"' | |
00:00:00.163 [DEBUG] [sway/config.c:833] Read line 69: map_to_output HDMI-A-6 | |
00:00:00.163 [INFO] [sway/commands.c:381] Config command: input "8746:1:ILITEK_ILITEK-TP" map_to_output HDMI-A-6 | |
00:00:00.163 [INFO] [sway/commands.c:404] After replacement: input "8746:1:ILITEK_ILITEK-TP" map_to_output HDMI-A-6 | |
00:00:00.163 [DEBUG] [sway/commands/input.c:57] entering input block: 8746:1:ILITEK_ILITEK-TP | |
00:00:00.163 [DEBUG] [sway/config/input.c:15] new_input_config(8746:1:ILITEK_ILITEK-TP) | |
00:00:00.163 [DEBUG] [sway/commands.c:436] Subcommand: map_to_output HDMI-A-6 | |
00:00:00.163 [DEBUG] [sway/config/input.c:15] new_input_config(temp) | |
00:00:00.166 [DEBUG] [sway/config/input.c:362] Config stored for input 8746:1:ILITEK_ILITEK-TP | |
00:00:00.166 [DEBUG] [sway/config.c:833] Read line 70: } | |
00:00:00.166 [DEBUG] [sway/config.c:904] Exiting block 'input "8746:1:ILITEK_ILITEK-TP"' | |
00:00:00.166 [DEBUG] [sway/config.c:833] Read line 71: input "8746:1:ILITEK_ILITEK-TP_Mouse" { | |
00:00:00.166 [DEBUG] [sway/config.c:887] Entering block 'input "8746:1:ILITEK_ILITEK-TP_Mouse"' | |
00:00:00.166 [DEBUG] [sway/config.c:833] Read line 72: map_to_output HDMI-A-6 | |
00:00:00.166 [INFO] [sway/commands.c:381] Config command: input "8746:1:ILITEK_ILITEK-TP_Mouse" map_to_output HDMI-A-6 | |
00:00:00.166 [INFO] [sway/commands.c:404] After replacement: input "8746:1:ILITEK_ILITEK-TP_Mouse" map_to_output HDMI-A-6 | |
00:00:00.166 [DEBUG] [sway/commands/input.c:57] entering input block: 8746:1:ILITEK_ILITEK-TP_Mouse | |
00:00:00.166 [DEBUG] [sway/config/input.c:15] new_input_config(8746:1:ILITEK_ILITEK-TP_Mouse) | |
00:00:00.166 [DEBUG] [sway/commands.c:436] Subcommand: map_to_output HDMI-A-6 | |
00:00:00.166 [DEBUG] [sway/config/input.c:15] new_input_config(temp) | |
00:00:00.168 [DEBUG] [sway/config/input.c:362] Config stored for input 8746:1:ILITEK_ILITEK-TP_Mouse | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 73: } | |
00:00:00.168 [DEBUG] [sway/config.c:904] Exiting block 'input "8746:1:ILITEK_ILITEK-TP_Mouse"' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 74: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 75: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 76: ### Key bindings | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 77: # | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 78: # Basics: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 79: # | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 80: # Start a terminal | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 81: bindsym $mod+Return exec $term | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Return exec $term | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Return exec kitty | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Return to command `exec kitty` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 82: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 83: # Kill focused window | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 84: bindsym $mod+Shift+q kill | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+q kill | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+q kill | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+q to command `kill` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 85: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 86: # Start your launcher | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 87: bindsym $mod+d exec $menu | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+d exec $menu | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 88: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 89: # Drag floating windows by holding down $mod and left mouse button. | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 90: # Resize them with right mouse button + $mod. | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 91: # Despite the name, also works for non-floating windows. | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 92: # Change normal to inverse to use left mouse button for resizing and right | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 93: # mouse button for dragging. | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 94: floating_modifier $mod normal | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: floating_modifier $mod normal | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: floating_modifier Mod4 normal | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 95: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 96: # Reload the configuration file | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 97: bindsym $mod+Shift+c reload | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+c reload | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+c reload | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+c to command `reload` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 98: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 99: # Exit sway (logs you out of your Wayland session) | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 100: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+e to command `exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 101: # | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 102: # Moving around: | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 103: # | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 104: # Move your focus around | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 105: bindsym $mod+$left focus left | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$left focus left | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+h focus left | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+h to command `focus left` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 106: bindsym $mod+$down focus down | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$down focus down | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+j focus down | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+j to command `focus down` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 107: bindsym $mod+$up focus up | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$up focus up | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+k focus up | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+k to command `focus up` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 108: #bindsym $mod+$right focus right | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 109: # Or use $mod+[up|down|left|right] | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 110: bindsym $mod+Left focus left | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Left focus left | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Left focus left | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Left to command `focus left` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 111: bindsym $mod+Down focus down | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Down focus down | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Down focus down | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Down to command `focus down` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 112: bindsym $mod+Up focus up | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Up focus up | |
00:00:00.168 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Up focus up | |
00:00:00.168 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Up to command `focus up` for device '*' | |
00:00:00.168 [DEBUG] [sway/config.c:833] Read line 113: bindsym $mod+Right focus right | |
00:00:00.168 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Right focus right | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Right focus right | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Right to command `focus right` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 114: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 115: # Move the focused window with the same, but add Shift | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 116: bindsym $mod+Shift+$left move left | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$left move left | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+h move left | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+h to command `move left` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 117: bindsym $mod+Shift+$down move down | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$down move down | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+j move down | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+j to command `move down` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 118: bindsym $mod+Shift+$up move up | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$up move up | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+k move up | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+k to command `move up` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 119: bindsym $mod+Shift+$right move right | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$right move right | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+l move right | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+l to command `move right` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 120: # Ditto, with arrow keys | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 121: bindsym $mod+Shift+Left move left | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Left move left | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Left move left | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 122: bindsym $mod+Shift+Down move down | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Down move down | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Down move down | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 123: bindsym $mod+Shift+Up move up | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Up move up | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Up move up | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 124: bindsym $mod+Shift+Right move right | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Right move right | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Right move right | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 125: # | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 126: # Workspaces: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 127: # | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 128: # Switch to workspace | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 129: bindsym $mod+1 workspace number 1 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+1 workspace number 1 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+1 workspace number 1 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+1 to command `workspace number 1` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 130: bindsym $mod+2 workspace number 2 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+2 workspace number 2 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+2 workspace number 2 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+2 to command `workspace number 2` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 131: bindsym $mod+3 workspace number 3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+3 workspace number 3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+3 workspace number 3 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+3 to command `workspace number 3` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 132: bindsym $mod+4 workspace number 4 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+4 workspace number 4 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+4 workspace number 4 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+4 to command `workspace number 4` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 133: bindsym $mod+5 workspace number 5 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+5 workspace number 5 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+5 workspace number 5 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+5 to command `workspace number 5` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 134: bindsym $mod+6 workspace number 6 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+6 workspace number 6 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+6 workspace number 6 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+6 to command `workspace number 6` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 135: bindsym $mod+7 workspace number 7 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+7 workspace number 7 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+7 workspace number 7 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+7 to command `workspace number 7` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 136: bindsym $mod+8 workspace number 8 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+8 workspace number 8 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+8 workspace number 8 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+8 to command `workspace number 8` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 137: bindsym $mod+9 workspace number 9 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+9 workspace number 9 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+9 workspace number 9 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+9 to command `workspace number 9` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 138: bindsym $mod+0 workspace number 10 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+0 workspace number 10 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+0 workspace number 10 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+0 to command `workspace number 10` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 139: # Move focused container to workspace | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 140: bindsym $mod+Shift+1 move container to workspace number 1 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+1 move container to workspace number 1 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+1 move container to workspace number 1 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+1 to command `move container to workspace number 1` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 141: bindsym $mod+Shift+2 move container to workspace number 2 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+2 move container to workspace number 2 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+2 move container to workspace number 2 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+2 to command `move container to workspace number 2` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 142: bindsym $mod+Shift+3 move container to workspace number 3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+3 move container to workspace number 3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+3 move container to workspace number 3 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+3 to command `move container to workspace number 3` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 143: bindsym $mod+Shift+4 move container to workspace number 4 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+4 move container to workspace number 4 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+4 move container to workspace number 4 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+4 to command `move container to workspace number 4` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 144: bindsym $mod+Shift+5 move container to workspace number 5 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+5 move container to workspace number 5 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+5 move container to workspace number 5 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+5 to command `move container to workspace number 5` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 145: bindsym $mod+Shift+6 move container to workspace number 6 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+6 move container to workspace number 6 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+6 move container to workspace number 6 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+6 to command `move container to workspace number 6` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 146: bindsym $mod+Shift+7 move container to workspace number 7 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+7 move container to workspace number 7 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+7 move container to workspace number 7 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+7 to command `move container to workspace number 7` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 147: bindsym $mod+Shift+8 move container to workspace number 8 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+8 move container to workspace number 8 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+8 move container to workspace number 8 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+8 to command `move container to workspace number 8` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 148: bindsym $mod+Shift+9 move container to workspace number 9 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+9 move container to workspace number 9 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+9 move container to workspace number 9 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+9 to command `move container to workspace number 9` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 149: bindsym $mod+Shift+0 move container to workspace number 10 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+0 move container to workspace number 10 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+0 move container to workspace number 10 | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+0 to command `move container to workspace number 10` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 150: # Note: workspaces can have any name you want, not just numbers. | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 151: # We just use 1-10 as the default. | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 152: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 153: workspace 1 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 1 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 1 output DP-3 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 154: workspace 10 output HDMI-A-6 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 10 output HDMI-A-6 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 10 output HDMI-A-6 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 155: workspace 9 output HDMI-A-6 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 9 output HDMI-A-6 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 9 output HDMI-A-6 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 156: workspace 3 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 3 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 3 output DP-3 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 157: workspace 4 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 4 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 4 output DP-3 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 158: workspace 5 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 5 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 5 output DP-3 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 159: workspace 6 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: workspace 6 output DP-3 | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: workspace 6 output DP-3 | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 160: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 161: # | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 162: # Layout stuff: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 163: # | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 164: # You can "split" the current object of your focus with | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 165: # $mod+b or $mod+v, for horizontal and vertical splits | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 166: # respectively. | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 167: bindsym $mod+b splith | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+b splith | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+b splith | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+b to command `splith` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 168: bindsym $mod+v splitv | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+v splitv | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+v splitv | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+v to command `splitv` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 169: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 170: # Switch the current container between different layout styles | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 171: bindsym $mod+s layout stacking | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+s layout stacking | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+s layout stacking | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+s to command `layout stacking` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 172: bindsym $mod+w layout tabbed | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+w layout tabbed | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+w layout tabbed | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+w to command `layout tabbed` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 173: bindsym $mod+e layout toggle split | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+e layout toggle split | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+e layout toggle split | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+e to command `layout toggle split` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 174: | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 175: # Make the current focus fullscreen | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 176: bindsym $mod+f fullscreen | |
00:00:00.169 [INFO] [sway/commands.c:381] Config command: bindsym $mod+f fullscreen | |
00:00:00.169 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+f fullscreen | |
00:00:00.169 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+f to command `fullscreen` for device '*' | |
00:00:00.169 [DEBUG] [sway/config.c:833] Read line 177: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 178: # Toggle the current focus between tiling and floating mode | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 179: bindsym $mod+Shift+space floating toggle | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+space floating toggle | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+space floating toggle | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 180: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 181: # Swap focus between the tiling area and the floating area | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 182: bindsym $mod+space focus mode_toggle | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+space focus mode_toggle | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+space focus mode_toggle | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 183: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 184: # Move focus to the parent container | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 185: bindsym $mod+a focus parent | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+a focus parent | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+a focus parent | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+a to command `focus parent` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 186: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 187: # Scratchpad: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 188: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 189: # Sway has a "scratchpad", which is a bag of holding for windows. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 190: # You can send windows there and get them back later. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 191: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 192: # Move the currently focused window to the scratchpad | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 193: bindsym $mod+Shift+minus move scratchpad | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+minus move scratchpad | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+minus move scratchpad | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 194: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 195: # Show the next scratchpad window or hide the focused scratchpad window. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 196: # If there are multiple scratchpad windows, this command cycles through them. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 197: bindsym $mod+minus scratchpad show | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+minus scratchpad show | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+minus scratchpad show | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 198: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 199: # Resizing containers: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 200: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 201: mode "resize" { | |
00:00:00.170 [DEBUG] [sway/config.c:887] Entering block 'mode "resize"' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 202: # left will shrink the containers width | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 203: # right will grow the containers width | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 204: # up will shrink the containers height | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 205: # down will grow the containers height | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 206: bindsym $left resize shrink width 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $left resize shrink width 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym h resize shrink width 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym h resize shrink width 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound h to command `resize shrink width 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 207: bindsym $down resize grow height 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $down resize grow height 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym j resize grow height 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym j resize grow height 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound j to command `resize grow height 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 208: bindsym $up resize shrink height 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $up resize shrink height 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym k resize shrink height 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym k resize shrink height 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound k to command `resize shrink height 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 209: bindsym $right resize grow width 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $right resize grow width 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym l resize grow width 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym l resize grow width 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound l to command `resize grow width 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 210: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 211: # Ditto, with arrow keys | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 212: bindsym Left resize shrink width 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Left resize shrink width 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Left resize shrink width 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Left resize shrink width 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Left to command `resize shrink width 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 213: bindsym Down resize grow height 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Down resize grow height 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Down resize grow height 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Down resize grow height 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Down to command `resize grow height 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 214: bindsym Up resize shrink height 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Up resize shrink height 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Up resize shrink height 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Up resize shrink height 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Up to command `resize shrink height 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 215: bindsym Right resize grow width 10px | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Right resize grow width 10px | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Right resize grow width 10px | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Right resize grow width 10px | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Right to command `resize grow width 10px` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 216: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 217: # Return to default mode | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 218: bindsym Return mode "default" | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Return mode "default" | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Return mode "default" | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Return mode "default" | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Return to command `mode "default"` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 219: bindsym Escape mode "default" | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Escape mode "default" | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Escape mode "default" | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Escape mode "default" | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Escape to command `mode "default"` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 220: } | |
00:00:00.170 [DEBUG] [sway/config.c:904] Exiting block 'mode "resize"' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 221: bindsym $mod+r mode "resize" | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+r mode "resize" | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+r mode "resize" | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+r to command `mode "resize"` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 222: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 223: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 224: # Status Bar: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 225: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 226: # Read `man 5 sway-bar` for more information about this section. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 227: bar { | |
00:00:00.170 [DEBUG] [sway/config.c:887] Entering block 'bar' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 228: #swaybar_command waybar | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 229: position top | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bar position top | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bar position top | |
00:00:00.170 [DEBUG] [sway/commands/bar.c:91] Creating bar: bar-0 | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: position top | |
00:00:00.170 [DEBUG] [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0 | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 230: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 231: # When the status_command prints a new line to stdout, swaybar updates. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 232: # The default just shows the current date and time. | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 233: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.170 [DEBUG] [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 234: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 235: colors { | |
00:00:00.170 [DEBUG] [sway/config.c:887] Entering block 'bar colors' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 236: statusline #ffffff | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bar colors statusline #ffffff | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bar colors statusline #ffffff | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: colors statusline #ffffff | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: statusline #ffffff | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 237: background #323232 | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bar colors background #323232 | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bar colors background #323232 | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: colors background #323232 | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: background #323232 | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 238: inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.170 [DEBUG] [sway/commands.c:436] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 239: } | |
00:00:00.170 [DEBUG] [sway/config.c:904] Exiting block 'bar colors' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 240: } | |
00:00:00.170 [DEBUG] [sway/config.c:904] Exiting block 'bar' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 241: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 242: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 243: # screen capture | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 244: # | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 245: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 246: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Alt+Print to command `exec 'slurp | grim -g - - | wl-copy -t image/png'` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 247: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 248: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioRaiseVolume to command `exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+'` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 249: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioLowerVolume to command `exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-'` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 250: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioMute to command `exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle'` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 251: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 252: bindsym $mod+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: bindsym $mod+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.170 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+l to command `exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle'` for device '*' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 253: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 254: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.170 [DEBUG] [sway/config.c:877] Deferring command `exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 255: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.170 [DEBUG] [sway/config.c:877] Deferring command `exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1' | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 256: #for_window [title="Smithay"] floating enable | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 257: | |
00:00:00.170 [DEBUG] [sway/config.c:833] Read line 258: include /etc/sway/config.d/* | |
00:00:00.170 [INFO] [sway/commands.c:381] Config command: include /etc/sway/config.d/* | |
00:00:00.170 [INFO] [sway/commands.c:404] After replacement: include /etc/sway/config.d/* | |
00:00:00.171 [INFO] [sway/config.c:416] Loading config from /etc/sway/config.d/50-systemd-user.conf | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 2: # See FS#63021 | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal. | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 4: | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 5: # Upstream refuses to set XDG_CURRENT_DESKTOP so we have to. | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 6: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.171 [INFO] [sway/commands.c:381] Config command: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.171 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.171 [DEBUG] [sway/config.c:877] Deferring command `exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway' | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 10: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.171 [INFO] [sway/commands.c:381] Config command: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.171 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.171 [DEBUG] [sway/config.c:877] Deferring command `exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP' | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 11: | |
00:00:00.171 [DEBUG] [sway/config.c:833] Read line 16: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.171 [INFO] [sway/commands.c:381] Config command: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.171 [INFO] [sway/commands.c:404] After replacement: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.171 [DEBUG] [sway/config.c:877] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY' | |
00:00:00.190 [INFO] [sway/realtime.c:35] Failed to set scheduling priority to 1 | |
00:00:00.190 [DEBUG] [sway/server.c:393] Initializing Xwayland (lazy=1) | |
00:00:00.191 [INFO] [sway/server.c:420] Starting backend on wayland display 'wayland-1' | |
00:00:00.191 [DEBUG] [wlr] [backend/libinput/backend.c:88] Starting libinput backend | |
00:00:00.494 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Power Button [0:1] | |
00:00:00.494 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:1:Power_Button' | |
00:00:00.494 [DEBUG] [sway/input/input-manager.c:183] no fallback seat config - creating default | |
00:00:00.494 [DEBUG] [sway/config/seat.c:66] Adding non-wildcard seat config | |
00:00:00.494 [DEBUG] [sway/config/seat.c:83] Config stored for seat seat0 | |
00:00:00.494 [DEBUG] [sway/input/input-manager.c:599] applying seat config for seat seat0 | |
00:00:00.494 [DEBUG] [sway/input/seat.c:942] adding device 0:1:Power_Button to seat seat0 | |
00:00:00.505 [DEBUG] [sway/input/keyboard.c:907] Created keyboard group 0x5ad0282b3cb0 | |
00:00:00.505 [DEBUG] [sway/input/keyboard.c:930] Adding keyboard 0:1:Power_Button to group 0x5ad0282b3cb0 | |
00:00:00.521 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Power Button [0:1] | |
00:00:00.522 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:1:Power_Button' | |
00:00:00.522 [DEBUG] [sway/input/seat.c:942] adding device 0:1:Power_Button to seat seat0 | |
00:00:00.533 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 0:1:Power_Button to group 0x5ad0282b3cb0 | |
00:00:00.537 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Logitech BRIO Consumer Control [1133:2142] | |
00:00:00.537 [DEBUG] [sway/input/input-manager.c:233] adding device: '1133:2142:Logitech_BRIO_Consumer_Control' | |
00:00:00.537 [DEBUG] [sway/input/seat.c:942] adding device 1133:2142:Logitech_BRIO_Consumer_Control to seat seat0 | |
00:00:00.542 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 1133:2142:Logitech_BRIO_Consumer_Control to group 0x5ad0282b3cb0 | |
00:00:00.543 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD [9610:4102] | |
00:00:00.543 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD' | |
00:00:00.543 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD to seat seat0 | |
00:00:00.547 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD to group 0x5ad0282b3cb0 | |
00:00:00.548 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD Consumer Control [9610:4102] | |
00:00:00.548 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:00.548 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to seat seat0 | |
00:00:00.553 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to group 0x5ad0282b3cb0 | |
00:00:00.554 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:00.554 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to seat seat0 | |
00:00:00.566 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:225] Loaded cursor theme 'default' at size 24 (123 available cursors) | |
00:00:00.566 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:00.566 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD Keyboard [9610:4102] | |
00:00:00.566 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard' | |
00:00:00.566 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard to seat seat0 | |
00:00:00.570 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard to group 0x5ad0282b3cb0 | |
00:00:00.572 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD System Control [9610:4102] | |
00:00:00.572 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control' | |
00:00:00.572 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control to seat seat0 | |
00:00:00.576 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control to group 0x5ad0282b3cb0 | |
00:00:00.577 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.577 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.577 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.577 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.577 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.577 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.577 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.582 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:122:Razer_Razer_Viper_Ultimate to group 0x5ad0282b3cb0 | |
00:00:00.583 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.583 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.583 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.583 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.583 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.583 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.587 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:122:Razer_Razer_Viper_Ultimate to group 0x5ad0282b3cb0 | |
00:00:00.588 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Sony Interactive Entertainment Wireless Controller Touchpad [1356:2508] | |
00:00:00.588 [DEBUG] [sway/input/input-manager.c:233] adding device: '1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:00.588 [DEBUG] [sway/input/seat.c:942] adding device 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad to seat seat0 | |
00:00:00.588 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.588 [DEBUG] [wlr] [backend/libinput/events.c:130] libinput gesture not handled | |
00:00:00.588 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Sony Interactive Entertainment Wireless Controller Touchpad [1356:3302] | |
00:00:00.588 [DEBUG] [sway/input/input-manager.c:233] adding device: '1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:00.588 [DEBUG] [sway/input/seat.c:942] adding device 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad to seat seat0 | |
00:00:00.588 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.588 [DEBUG] [wlr] [backend/libinput/events.c:130] libinput gesture not handled | |
00:00:00.588 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro [5426:580] | |
00:00:00.588 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:00.588 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro to seat seat0 | |
00:00:00.593 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:580:Razer_Razer_Tartarus_Pro to group 0x5ad0282b3cb0 | |
00:00:00.594 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro Keyboard [5426:580] | |
00:00:00.594 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:00.594 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to seat seat0 | |
00:00:00.598 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to group 0x5ad0282b3cb0 | |
00:00:00.599 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:00.599 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to seat seat0 | |
00:00:00.599 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:00.599 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro [5426:580] | |
00:00:00.599 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:00.599 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro to seat seat0 | |
00:00:00.599 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:00.599 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Eee PC WMI hotkeys [0:0] | |
00:00:00.599 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:0:Eee_PC_WMI_hotkeys' | |
00:00:00.599 [DEBUG] [sway/input/seat.c:942] adding device 0:0:Eee_PC_WMI_hotkeys to seat seat0 | |
00:00:00.604 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 0:0:Eee_PC_WMI_hotkeys to group 0x5ad0282b3cb0 | |
00:00:00.605 [DEBUG] [wlr] [backend/libinput/backend.c:129] libinput successfully initialized | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1564] Scanning DRM connectors on /dev/dri/card1 | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-1' | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-1' | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-2' | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-2' | |
00:00:00.605 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-3' | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-3' | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1640] 'DP-3' connected | |
00:00:00.619 [DEBUG] [wlr] [backend/drm/drm.c:1434] Current CRTC: 80 | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1448] Detected modes: | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 3840x2160 @ 59.997 Hz (preferred) | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 3840x2160 @ 30.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 2560x1440 @ 59.951 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 59.940 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1600x900 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x1024 @ 60.020 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x800 @ 59.810 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1152x864 @ 59.972 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 59.940 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 1024x768 @ 60.004 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 60.317 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 59.940 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 60.000 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.619 [INFO] [wlr] [backend/drm/drm.c:1496] Physical size: 600x340 | |
00:00:00.621 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-4' | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1227] Reallocating CRTCs | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1238] State before reallocation: | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-1': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-1': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-2': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-2': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-3': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-3': crtc=0 status=connected want_crtc=1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-4': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1301] State after reallocation: | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-1': crtc=-1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-1': crtc=-1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-2': crtc=-1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-2': crtc=-1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-3': crtc=-1 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-3': crtc=0 | |
00:00:00.621 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-4': crtc=-1 | |
00:00:00.621 [INFO] [wlr] [backend/drm/drm.c:1676] connector DP-3: Requesting modeset | |
00:00:00.621 [DEBUG] [sway/desktop/output.c:454] New output 0x5ad028781ff0: DP-3 (non-desktop: 0) | |
00:00:00.621 [DEBUG] [sway/config/output.c:401] Turning on output DP-3 | |
00:00:00.621 [DEBUG] [sway/config/output.c:414] Set preferred mode | |
00:00:00.621 [DEBUG] [wlr] [types/output/render.c:127] Attaching empty buffer to output for modeset | |
00:00:00.621 [DEBUG] [wlr] [types/output/swapchain.c:27] Choosing primary buffer format XR24 (0x34325258) for output 'DP-3' | |
00:00:00.621 [DEBUG] [wlr] [types/output/swapchain.c:96] Testing swapchain for output 'DP-3' | |
00:00:00.621 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.621 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 3840x2160 GBM buffer with format XR24 (0x34325258), modifier 4_TILED_DG2_RC_CCS_CC (0x010000000000000C) | |
00:00:00.621 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3840x2160 | |
00:00:00.623 [DEBUG] [sway/config/output.c:448] Auto-detected output transform: 0 | |
00:00:00.623 [DEBUG] [sway/config/output.c:476] Set DP-3 scale to 1.400000 | |
00:00:00.623 [DEBUG] [sway/config/output.c:520] Committing output DP-3 | |
00:00:00.623 [DEBUG] [wlr] [types/output/render.c:127] Attaching empty buffer to output for modeset | |
00:00:00.623 [INFO] [wlr] [backend/drm/drm.c:798] connector DP-3: Modesetting with 3840x2160 @ 59.997 Hz | |
00:00:00.644 [DEBUG] [sway/config/output.c:555] Set DP-3 scale_filter to linear | |
00:00:00.644 [DEBUG] [sway/config/output.c:563] Set DP-3 position to 1280, 0 | |
00:00:00.690 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:225] Loaded cursor theme 'default' at size 33 (123 available cursors) | |
00:00:00.692 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.692 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:00.692 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output DP-3 | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 1 | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10' | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10' | |
00:00:00.692 [DEBUG] [sway/tree/output.c:164] Creating default workspace 1 | |
00:00:00.692 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 1 for output DP-3 | |
00:00:00.692 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.692 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.692 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.692 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.692 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.692 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:00.692 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028785ca0 committing with 2 instructions | |
00:00:00.693 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028785ca0 | |
00:00:00.693 [INFO] [wlr] [backend/drm/drm.c:1564] Scanning DRM connectors on /dev/dri/card2 | |
00:00:00.693 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-4' | |
00:00:00.693 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-5' | |
00:00:00.693 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-5' | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-6' | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1640] 'HDMI-A-6' connected | |
00:00:00.701 [DEBUG] [wlr] [backend/drm/drm.c:1434] Current CRTC: 60 | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1448] Detected modes: | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x1024 @ 59.464 Hz (preferred) | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 50.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1680x1050 @ 59.883 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1400x1050 @ 59.978 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x1024 @ 75.025 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x1024 @ 60.020 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x960 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x800 @ 59.464 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 50.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1024x768 @ 75.029 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1024x768 @ 70.069 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 1024x768 @ 60.004 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 75.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 72.188 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 60.317 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 56.250 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x576 @ 50.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x576 @ 50.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x576 @ 50.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 75.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 72.809 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 60.000 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1476] 720x400 @ 70.082 Hz | |
00:00:00.701 [INFO] [wlr] [backend/drm/drm.c:1496] Physical size: 0x0 | |
00:00:00.702 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DVI-D-1' | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1227] Reallocating CRTCs | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1238] State before reallocation: | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-4': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-5': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-5': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-6': crtc=0 status=connected want_crtc=1 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DVI-D-1': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1301] State after reallocation: | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-4': crtc=-1 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-5': crtc=-1 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-5': crtc=-1 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-6': crtc=0 | |
00:00:00.702 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DVI-D-1': crtc=-1 | |
00:00:00.702 [INFO] [wlr] [backend/drm/drm.c:1676] connector HDMI-A-6: Requesting modeset | |
00:00:00.702 [DEBUG] [sway/desktop/output.c:454] New output 0x5ad0287b8df0: HDMI-A-6 (non-desktop: 0) | |
00:00:00.702 [DEBUG] [sway/config/output.c:401] Turning on output HDMI-A-6 | |
00:00:00.702 [DEBUG] [sway/config/output.c:409] Set HDMI-A-6 mode to 1280x960 (-1.000000 Hz) | |
00:00:00.702 [INFO] [sway/config/output.c:277] Assigning configured mode ([email protected]) to HDMI-A-6 | |
00:00:00.702 [DEBUG] [sway/config/output.c:448] Auto-detected output transform: 0 | |
00:00:00.702 [DEBUG] [sway/config/output.c:473] Auto-detected output scale: 1.000000 | |
00:00:00.702 [DEBUG] [sway/config/output.c:520] Committing output HDMI-A-6 | |
00:00:00.702 [DEBUG] [wlr] [types/output/render.c:127] Attaching empty buffer to output for modeset | |
00:00:00.702 [DEBUG] [wlr] [types/output/swapchain.c:27] Choosing primary buffer format XR24 (0x34325258) for output 'HDMI-A-6' | |
00:00:00.702 [DEBUG] [wlr] [types/output/swapchain.c:96] Testing swapchain for output 'HDMI-A-6' | |
00:00:00.702 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.702 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 1280x960 GBM buffer with format XR24 (0x34325258), modifier LINEAR (0x0000000000000000) | |
00:00:00.702 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1280x960 | |
00:00:00.704 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1280x960 | |
00:00:00.704 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.704 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 1280x960 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF) | |
00:00:00.704 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1280x960 | |
00:00:00.713 [INFO] [wlr] [backend/drm/drm.c:798] connector HDMI-A-6: Modesetting with 1280x960 @ 60.000 Hz | |
00:00:00.756 [DEBUG] [sway/config/output.c:563] Set HDMI-A-6 position to 0, 260 | |
00:00:00.756 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.756 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.756 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028791f10 committing with 1 instructions | |
00:00:00.756 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028791f10 | |
00:00:00.768 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:225] Loaded cursor theme 'default' at size 24 (123 available cursors) | |
00:00:00.768 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.768 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:00.768 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:00.769 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:00.769 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.769 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:00.769 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:00.769 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output HDMI-A-6 | |
00:00:00.769 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1' | |
00:00:00.769 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1' | |
00:00:00.769 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2' | |
00:00:00.769 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 2 | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10' | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10' | |
00:00:00.770 [DEBUG] [sway/tree/output.c:164] Creating default workspace 10 | |
00:00:00.770 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 10 for output HDMI-A-6 | |
00:00:00.770 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x960@0,0 | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 260.000000 | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x960@0,0 | |
00:00:00.770 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 260.000000 | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.770 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:00.770 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0286dae90 committing with 3 instructions | |
00:00:00.770 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0286dae90 | |
00:00:00.770 [INFO] [wlr] [backend/headless/backend.c:17] Starting headless backend | |
00:00:00.770 [DEBUG] [sway/config/bar.c:265] Invoking swaybar for bar id 'bar-0' | |
00:00:00.778 [DEBUG] [sway/config/bar.c:258] Spawned swaybar bar-0 | |
00:00:00.778 [DEBUG] [sway/config.c:682] Running deferred commands | |
00:00:00.778 [INFO] [sway/commands.c:261] Handling command 'exec cosmic-app-library' | |
00:00:00.778 [DEBUG] [sway/commands/exec_always.c:58] Executing cosmic-app-library | |
00:00:00.786 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124043 | |
00:00:00.786 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124043 | |
00:00:00.786 [INFO] [sway/commands.c:261] Handling command 'exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway' | |
00:00:00.786 [DEBUG] [sway/commands/exec_always.c:58] Executing dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.796 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124045 | |
00:00:00.796 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124045 | |
00:00:00.796 [INFO] [sway/commands.c:261] Handling command 'exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1' | |
00:00:00.796 [DEBUG] [sway/commands/exec_always.c:58] Executing /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.805 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124048 | |
00:00:00.805 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124048 | |
00:00:00.806 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway' | |
00:00:00.806 [DEBUG] [sway/commands/exec_always.c:58] Executing systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.815 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124050 | |
00:00:00.815 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124050 | |
00:00:00.815 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP' | |
00:00:00.815 [DEBUG] [sway/commands/exec_always.c:58] Executing systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.829 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124054 | |
00:00:00.829 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124054 | |
00:00:00.829 [INFO] [sway/commands.c:261] Handling command 'exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY' | |
00:00:00.829 [DEBUG] [sway/commands/exec_always.c:58] Executing hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.838 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124059 | |
00:00:00.838 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124059 | |
00:00:00.838 [INFO] [sway/server.c:432] Running compositor on wayland display 'wayland-1' | |
Environment variable $XDG_CURRENT_DESKTOP not set, ignoring. | |
00:00:00.839 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.839 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 3840x2160 GBM buffer with format XR24 (0x34325258), modifier 4_TILED_DG2_RC_CCS_CC (0x010000000000000C) | |
00:00:00.839 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3840x2160 | |
00:00:00.844 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.844 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 1280x960 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF) | |
00:00:00.844 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1280x960 | |
00:00:00.845 [DEBUG] [sway/ipc-server.c:197] New client: fd 91 | |
00:00:00.845 [DEBUG] [sway/ipc-server.c:197] New client: fd 95 | |
2024-01-19 14:57:56 - [swaybg/main.c:260] Found config * for output DP-3 (LG Electronics LG HDR 4K 0x00016489) | |
2024-01-19 14:57:56 - [swaybg/main.c:260] Found config * for output HDMI-A-6 (ROW CVTE TV) | |
00:00:00.846 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283cd790 (res 0x5ad028391480) | |
00:00:00.846 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x5ad0283f42a0 (res 0x5ad0283f43c0) | |
00:00:00.846 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.846 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028392840 (res 0x5ad0283f44e0) | |
00:00:00.846 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x5ad0283b6cf0 (res 0x5ad0283b6e10) | |
00:00:00.846 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.847 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283f1ff0 (res 0x5ad02838a4a0) | |
00:00:00.859 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283ff8c0 (res 0x5ad0283ffca0) | |
00:00:00.862 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283b8cb0 (res 0x5ad0283b9090) | |
00:00:00.862 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283a5f70 (res 0x5ad0283a6350) | |
Failed to get config: [Io(Os { code: 2, kind: NotFound, message: "No such file or directory" })] | |
00:00:00.891 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283f6890 (res 0x5ad0283f6c70) | |
00:00:00.891 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x5ad0283ecea0 (res 0x5ad0283a3e20) | |
00:00:00.891 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.891 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad0283998e0 (res 0x5ad028399cc0) | |
00:00:00.891 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x5ad02839ad00 (res 0x5ad02839ae20) | |
00:00:00.891 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.900 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.900 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:00.900 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:00.900 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028390d50 committing with 1 instructions | |
00:00:00.900 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028390d50 | |
00:00:00.901 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.901 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:00.901 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:00.901 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0283b72d0 committing with 1 instructions | |
00:00:00.901 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0283b72d0 | |
00:00:01.871 [DEBUG] [sway/commands/bind.c:619] running command for binding: exec kitty | |
00:00:01.871 [INFO] [sway/commands.c:261] Handling command 'exec kitty' | |
00:00:01.871 [DEBUG] [sway/commands/exec_always.c:58] Executing kitty | |
00:00:01.893 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124092 | |
00:00:01.893 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124092 | |
[019 14:57:57.172302] Ignoring unknown config key: resize_draw_strategy | |
00:00:02.025 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028affe30 (res 0x5ad028b00210) | |
00:00:02.025 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028b003c0 (res 0x5ad028b007a0) | |
00:00:02.032 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028e5de20 (res 0x5ad028e5e200) | |
00:00:02.032 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028e5e290 (res 0x5ad028e5e670) | |
00:00:02.071 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x5ad028e5f0b0 (res 0x5ad028e5f200) | |
00:00:02.071 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:02.071 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:216] new xdg_toplevel_decoration 0x5ad028e5fd50 (res 0x5ad028e5fe40) | |
00:00:02.103 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:02.103 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:02.108 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:02.108 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:02.108 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:02.108 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe469716e0 horizontally | |
00:00:02.108 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0283ef8b0 committing with 3 instructions | |
00:00:02.108 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:02.108 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:02.108 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:02.108 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:02.108 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:02.108 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:02.108 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:02.108 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:02.108 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad0283ef8b0 is ready | |
00:00:02.108 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0283ef8b0 | |
00:00:02.123 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:02.124 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:02.131 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:02.146 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:04.639 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:04.639 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:04.639 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:04.719 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:04.719 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:04.719 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:05.007 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:05.007 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:05.007 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:05.111 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:05.111 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:05.111 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:05.351 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:05.351 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:05.351 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:05.839 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:05.839 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:05.839 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:06.135 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:06.135 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:06.135 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:06.215 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:06.215 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:06.215 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:06.871 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:06.871 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:06.871 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:07.015 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:07.015 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:07.015 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:07.055 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:07.055 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:07.055 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:07.119 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:07.119 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:07.119 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:07.463 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:07.463 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:07.463 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:07.779 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.779 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.779 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:07.779 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.779 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.779 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:07.780 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.780 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.780 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:07.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:07.781 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.781 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:07.781 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.781 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:07.781 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.781 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 128x128 | |
00:00:08.349 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:08.349 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:08.349 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:08.349 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:08.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971c40 horizontally | |
00:00:08.349 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f27820 committing with 3 instructions | |
00:00:08.350 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:08.350 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:08.350 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:08.350 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:08.350 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:08.350 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:08.351 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2552x1812 | |
00:00:08.351 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f27820 is ready | |
00:00:08.351 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f27820 | |
00:00:08.390 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:08.407 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:08.408 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:08.408 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:08.408 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:08.424 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:09.156 [INFO] [wlr] [xwayland/server.c:108] Starting Xwayland on :0 | |
00:00:09.215 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.215 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:09.215 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
Failed to initialize glamor, falling back to sw | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:09.288 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f1c080 (res 0x5ad028f1c460) | |
00:00:09.288 [DEBUG] [wlr] [xwayland/server.c:273] Xserver is ready | |
00:00:09.289 [DEBUG] [wlr] [xwayland/xwm.c:1961] xfixes version: 6.0 | |
00:00:09.289 [DEBUG] [wlr] [xwayland/xwm.c:1982] xres version: 1.2 | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.289 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Unsupported maximum keycode 708, clipping. | |
> X11 cannot support keycodes above 255. | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:09.300 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.300 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:09.300 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:09.300 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:09.593 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.593 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:09.593 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:09.593 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.593 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:09.593 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:09.593 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.593 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:09.638 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f12270 (res 0x5ad028f12650) | |
00:00:09.638 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f126e0 (res 0x5ad028f12ac0) | |
00:00:09.638 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f12b50 (res 0x5ad028f12f30) | |
00:00:09.638 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f12fc0 (res 0x5ad028f133a0) | |
00:00:09.638 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x5ad028f14570 (res 0x5ad028f146c0) | |
00:00:09.638 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:09.638 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:216] new xdg_toplevel_decoration 0x5ad028f157d0 (res 0x5ad028f158c0) | |
00:00:09.677 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:09.735 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 448x252 | |
00:00:09.735 [DEBUG] [sway/desktop/launcher.c:82] Looking up workspace for pid 124165 | |
00:00:09.735 [DEBUG] [sway/tree/view.c:426] View 0x5ad028f14990 updated CSD to 1 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:09.736 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:09.736 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:09.736 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe469716e0 horizontally | |
00:00:09.736 [DEBUG] [sway/ipc-server.c:301] Sending workspace::focus event | |
00:00:09.736 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f17ad0 committing with 4 instructions | |
00:00:09.737 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.737 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:09.737 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:09.737 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:09.737 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 448x252 | |
00:00:09.738 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 448x252 | |
00:00:09.738 [DEBUG] [sway/desktop/idle_inhibit_v1.c:29] New sway idle inhibitor | |
00:00:09.743 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 636x906 | |
00:00:09.755 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 636x906 | |
00:00:09.755 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f17ad0 is ready | |
00:00:09.755 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f17ad0 | |
00:00:09.760 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 636x906 | |
00:00:09.770 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 636x906 | |
00:00:09.788 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 636x906 | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971c40 horizontally | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:11.373 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971c40 horizontally | |
00:00:11.373 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f17710 committing with 4 instructions | |
00:00:11.375 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:11.375 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:11.376 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:11.404 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2738x1488 | |
00:00:11.404 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f17710 is ready | |
00:00:11.404 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f17710 | |
00:00:11.406 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:11.407 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:11.415 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:11.418 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2738x1488 | |
00:00:11.446 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:11.450 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:11.451 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:11.468 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:11.499 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1276x906 | |
00:00:11.545 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f344e0 committing with 5 instructions | |
00:00:11.545 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f344e0 | |
00:00:11.548 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:11.548 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:11.548 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:11.548 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:11.548 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:11.548 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:11.548 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:11.548 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:11.550 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:11.550 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:11.550 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.295 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.295 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.295 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.439 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.439 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.439 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.543 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.543 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.543 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.585 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:12.647 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.647 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.647 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.743 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.743 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.743 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.863 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.863 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.863 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.007 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.007 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.007 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.031 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.031 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.031 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.263 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.263 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.263 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.327 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.327 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.327 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.751 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.751 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.751 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:15.567 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:15.567 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:15.567 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:16.189 [DEBUG] [sway/ipc-server.c:301] Sending workspace::focus event | |
00:00:16.189 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028e65fe0 committing with 5 instructions | |
00:00:16.190 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028e65fe0 | |
00:00:16.190 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:16.190 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:16.190 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:16.190 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:17.567 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:17.567 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:17.568 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:17.568 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:17.568 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:17.568 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028af9c30 committing with 4 instructions | |
00:00:17.610 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:17.610 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028af9c30 is ready | |
00:00:17.610 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028af9c30 | |
00:00:17.611 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.618 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:17.635 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:17.646 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.746 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.779 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.796 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.829 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.846 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.879 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.896 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.929 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.952 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.979 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:17.996 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.029 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.046 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.079 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.096 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.129 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.146 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.179 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.196 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.229 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.246 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.279 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.296 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.346 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.396 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.446 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.496 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.546 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.596 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.646 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.663 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.696 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.746 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.796 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.846 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.896 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.946 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.963 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:18.996 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.046 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.096 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.146 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.196 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.246 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.296 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.346 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.396 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.446 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.496 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.546 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.596 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.645 [INFO] [wlr] [xwayland/server.c:215] Restarting Xwayland (lazy) | |
00:00:19.646 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.663 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.696 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.746 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.796 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.846 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.896 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.946 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.963 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:19.996 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.046 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.096 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.146 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.196 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.246 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.296 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.346 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.396 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.446 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.496 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.546 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.596 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.646 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.663 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.696 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.796 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.963 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:20.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.663 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.963 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:21.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.663 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.813 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.863 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.913 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.963 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:22.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.013 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.063 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.113 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.163 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.213 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.263 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.313 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.363 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.413 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.463 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.513 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.563 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.613 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.713 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.763 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:23.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:24.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.330 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.380 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.430 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.480 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.530 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.580 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.630 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.680 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.730 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.780 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.830 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.880 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.930 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.980 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:25.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.030 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.080 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.130 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.180 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.230 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.280 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:26.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:27.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.297 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.347 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.397 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.447 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.497 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.547 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.597 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.647 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.697 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.747 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.797 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.847 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.897 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.947 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:28.997 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.047 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.097 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.147 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.197 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.247 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.298 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.348 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.398 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.448 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.498 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.548 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.598 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.648 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.698 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.748 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.798 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.848 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.898 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.948 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:29.998 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.048 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.098 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.148 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.198 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.248 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.298 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.348 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.398 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.448 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.498 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.548 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.598 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.648 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.698 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.748 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.779 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token 'f9863d4f78f6df8ab7c03b3bfadb8c6e' has expired | |
00:00:30.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.786 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '3a8ecedba1947f3dd8810e5eb6c82177' has expired | |
00:00:30.796 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '3acb04fda774994320e0ffebe64fdb0e' has expired | |
00:00:30.798 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.806 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '3497ad806636008eb76db48654175653' has expired | |
00:00:30.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.815 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '22a74771b387508547ae0781ace9bd23' has expired | |
00:00:30.829 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '239d6789231a216129136eca1d7672ca' has expired | |
00:00:30.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.848 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.898 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.948 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:30.998 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.048 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.064 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.098 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.114 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.148 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.164 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.198 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.214 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.248 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.264 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.298 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.314 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.348 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.364 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.398 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.414 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.448 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.464 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.498 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.514 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.548 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.564 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.598 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.614 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.648 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.664 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.698 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.714 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.748 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.764 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.798 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.814 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.848 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.864 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.898 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.914 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.948 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.964 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:31.998 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.014 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.048 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.065 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.081 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.098 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.115 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.131 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.148 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.165 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.181 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.198 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.215 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.231 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.248 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.265 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.281 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.298 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.315 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.331 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.348 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.365 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.381 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.398 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.415 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.431 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.448 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.465 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.481 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.498 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.515 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.531 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.548 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.565 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.581 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.598 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.615 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.631 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.648 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.665 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.681 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.698 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.715 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.731 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.748 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.765 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.781 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.798 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.815 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.831 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.848 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.865 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.881 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.898 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.915 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.931 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.948 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.965 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.981 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:32.998 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:33.015 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:33.018 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:33.018 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0286dae90 committing with 4 instructions | |
00:00:33.031 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:33.065 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:33.065 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad0286dae90 is ready | |
00:00:33.065 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0286dae90 | |
00:00:33.071 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:33.085 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:33.101 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:34.194 [DEBUG] [sway/ipc-server.c:301] Sending workspace::focus event | |
00:00:34.195 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0286dae90 committing with 5 instructions | |
00:00:34.195 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0286dae90 | |
00:00:34.197 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.197 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:34.197 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.197 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:34.197 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:34.197 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.197 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:34.197 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:34.200 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.200 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:34.200 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:35.057 [DEBUG] [sway/ipc-server.c:301] Sending workspace::focus event | |
00:00:35.057 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f4fc30 committing with 5 instructions | |
00:00:35.057 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f4fc30 | |
00:00:35.058 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.058 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:35.058 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.058 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.968 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.968 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.968 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:35.968 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:35.968 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:35.968 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028335620 committing with 4 instructions | |
00:00:36.003 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:36.003 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028335620 is ready | |
00:00:36.003 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028335620 | |
00:00:36.015 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.018 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:36.036 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:36.065 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.115 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.165 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.215 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.248 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.282 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.315 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.348 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.382 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.415 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.448 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.482 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.515 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.548 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:36.568 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:36.568 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028e61d40 committing with 4 instructions | |
00:00:36.582 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:36.610 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:36.610 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028e61d40 is ready | |
00:00:36.610 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028e61d40 | |
00:00:36.619 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:36.635 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:36.651 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x2083 | |
00:00:38.271 [DEBUG] [sway/commands/bind.c:619] running command for binding: exec dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:38.271 [INFO] [sway/commands.c:261] Handling command 'exec dmenu_path | dmenu | xargs swaymsg exec --' | |
00:00:38.271 [DEBUG] [sway/commands/exec_always.c:58] Executing dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:38.283 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124330 | |
00:00:38.283 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124330 | |
00:00:38.300 [INFO] [wlr] [xwayland/server.c:108] Starting Xwayland on :0 | |
Failed to initialize glamor, falling back to sw | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:38.430 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f18440 (res 0x5ad028f1bf60) | |
00:00:38.431 [DEBUG] [wlr] [xwayland/server.c:273] Xserver is ready | |
00:00:38.431 [DEBUG] [wlr] [xwayland/xwm.c:1961] xfixes version: 6.0 | |
00:00:38.431 [DEBUG] [wlr] [xwayland/xwm.c:1982] xres version: 1.2 | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.431 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Unsupported maximum keycode 708, clipping. | |
> X11 cannot support keycodes above 255. | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:38.444 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.444 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:38.444 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.444 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:38.488 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.488 [DEBUG] [sway/desktop/xwayland.c:877] New xwayland unmanaged surface | |
00:00:38.488 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.489 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f18af0 (res 0x5ad028e674e0) | |
00:00:38.489 [DEBUG] [wlr] [xwayland/xwm.c:1744] New xwayland surface: 0x5ad028f18af0 | |
00:00:38.489 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:38.999 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:38.999 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:39.931 [DEBUG] [sway/ipc-server.c:197] New client: fd 133 | |
00:00:39.931 [INFO] [sway/commands.c:261] Handling command 'exec firefox' | |
00:00:39.931 [DEBUG] [sway/commands/exec_always.c:58] Executing firefox | |
00:00:39.940 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 124353 | |
00:00:39.940 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 124353 | |
00:00:39.941 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f193c0 committing with 3 instructions | |
00:00:39.941 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f193c0 | |
00:00:39.943 [INFO] [sway/ipc-server.c:571] IPC Client 133 disconnected | |
00:00:39.999 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f4f250 (res 0x5ad028f4f630) | |
00:00:39.999 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f18af0 (res 0x5ad028f18ed0) | |
00:00:40.309 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f540f0 (res 0x5ad028f46c10) | |
00:00:40.309 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f540f0 (res 0x5ad028f544d0) | |
00:00:40.535 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f544a0 (res 0x5ad028f4f6c0) | |
00:00:40.900 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f48200 (res 0x5ad0289982d0) | |
00:00:40.900 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f48200 (res 0x5ad0289982d0) | |
00:00:41.133 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f48200 (res 0x5ad0289982d0) | |
00:00:41.175 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x5ad028f2fd40 (res 0x5ad028f540f0) | |
00:00:41.175 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:41.175 [DEBUG] [wlr] [types/wlr_server_decoration.c:104] new server_decoration 0x5ad028204cd0 (res 0x5ad028f4b610) | |
00:00:41.175 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f48ef0 (res 0x5ad028f492d0) | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:41.204 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:41.204 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:41.204 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe469716e0 horizontally | |
00:00:41.204 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f121a0 committing with 4 instructions | |
00:00:41.235 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:41.252 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:41.289 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f121a0 is ready | |
00:00:41.289 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f121a0 | |
00:00:41.291 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1280x960 | |
00:00:41.293 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:41.301 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:41.374 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x5ad028f52c40 (res 0x5ad028f4e130) | |
00:00:41.463 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:41.464 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:41.478 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:41.985 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f194e0 committing with 4 instructions | |
00:00:41.985 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f194e0 | |
00:00:41.992 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:42.351 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:42.351 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:42.351 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:42.351 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:42.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:42.351 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f47360 committing with 4 instructions | |
00:00:42.387 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:42.387 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f47360 is ready | |
00:00:42.387 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f47360 | |
00:00:42.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.407 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:42.416 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.420 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:42.449 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.482 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.516 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.549 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.582 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.616 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.632 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.666 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.699 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.766 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.782 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.799 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.816 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.832 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.849 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.866 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.899 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.916 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.949 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.966 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.982 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:42.999 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.016 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.034 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.066 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.099 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.116 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.149 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.166 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.199 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.216 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.249 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.266 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.299 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.316 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.349 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.366 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.399 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.416 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.449 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.466 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.499 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.516 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.549 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.566 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.599 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.616 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.649 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.666 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.699 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.716 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.749 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.766 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.799 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.816 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.833 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.849 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.866 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.899 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.916 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.949 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.966 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.983 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:43.999 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.016 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.033 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.049 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.066 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.099 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.116 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.149 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.166 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.199 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.216 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.249 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.266 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.299 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.316 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.349 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:44.350 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:44.350 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad02814d9b0 committing with 5 instructions | |
00:00:44.366 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:44.394 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:44.394 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad02814d9b0 is ready | |
00:00:44.394 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad02814d9b0 | |
00:00:44.411 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:44.412 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:44.418 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:44.424 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:44.453 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:44.553 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad0283f4570 committing with 4 instructions | |
00:00:44.553 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad0283f4570 | |
00:00:44.601 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:45.261 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:45.567 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:45.723 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f1b2a0 committing with 4 instructions | |
00:00:45.723 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f1b2a0 | |
00:00:45.727 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:45.749 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:46.300 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:46.300 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:46.300 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:46.300 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:46.300 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:46.300 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f473c0 committing with 4 instructions | |
00:00:46.336 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:46.336 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f473c0 is ready | |
00:00:46.336 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f473c0 | |
00:00:46.337 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.351 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:46.366 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.368 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3839x2159 | |
00:00:46.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.416 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.450 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.466 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.500 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.516 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.550 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.566 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.600 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.616 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.650 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.666 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.700 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.716 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.750 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.766 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.800 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.816 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.833 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.850 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.866 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.900 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.916 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.950 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.966 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:46.983 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.000 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.016 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.033 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.050 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.066 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.100 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.116 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.150 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.166 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.200 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.216 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.250 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.266 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.300 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.316 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.350 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.366 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.416 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.450 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.466 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.500 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.516 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.550 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.566 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.600 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.616 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.650 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.666 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.700 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.716 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.750 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.766 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.800 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.816 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.833 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.850 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.866 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.900 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.916 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.950 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.966 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:47.983 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.000 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.016 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.033 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.050 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.066 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.100 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.116 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.150 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.166 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.200 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.216 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.250 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.266 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.300 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.316 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.350 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.366 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.416 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.450 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.466 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.500 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.517 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.550 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.566 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.600 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.617 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.650 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.667 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.700 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.717 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.750 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.767 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.800 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.817 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.833 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.850 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.867 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.900 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.917 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.950 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.967 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:48.983 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.000 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.017 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.033 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.050 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.067 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.100 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.117 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.150 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.167 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.200 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.217 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.250 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.267 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.300 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.317 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.350 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.367 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.417 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.450 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.467 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.500 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.517 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.550 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.567 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.600 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.617 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.650 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.667 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.700 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.717 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.750 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.767 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.800 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.817 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.833 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.850 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.867 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.883 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.900 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.917 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.933 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.939 [INFO] [wlr] [xwayland/server.c:215] Restarting Xwayland (lazy) | |
00:00:49.950 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.967 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:49.983 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.000 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.017 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.033 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.050 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.067 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.083 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.100 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.117 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.133 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.150 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.167 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.183 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.200 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.217 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.233 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.250 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.267 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.283 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.300 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.317 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.333 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.350 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.367 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.383 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.400 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.417 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.433 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.450 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.467 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.483 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.500 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.517 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.533 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.550 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.567 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.583 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.600 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.617 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.633 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.650 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.667 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.683 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.700 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.717 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.733 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.750 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.767 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.783 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.800 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x935@0,25 | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 285.000000 | |
00:00:50.800 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971810 horizontally | |
00:00:50.800 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f4ae80 committing with 5 instructions | |
00:00:50.817 [DEBUG] [wlr] [types/output/output.c:655] Primary buffer size mismatch | |
00:00:50.844 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:50.844 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028f4ae80 is ready | |
00:00:50.844 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f4ae80 | |
00:00:50.862 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:50.862 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:50.868 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x2083 | |
00:00:50.873 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:51.556 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:51.556 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:51.556 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971b20 horizontally | |
00:00:51.556 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028b00cc0 committing with 4 instructions | |
00:00:51.556 [DEBUG] [sway/desktop/idle_inhibit_v1.c:21] Sway idle inhibitor destroyed | |
00:00:51.578 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:51.728 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x5ad028b00cc0 is ready | |
00:00:51.728 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028b00cc0 | |
00:00:51.730 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:51.742 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:51.754 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:51.754 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:51.754 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:51.773 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:52.137 [DEBUG] [sway/ipc-server.c:301] Sending workspace::focus event | |
00:00:52.137 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f5fdc0 committing with 5 instructions | |
00:00:52.137 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x5ad028f5fdc0 | |
00:00:52.138 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:52.138 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:52.138 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:52.138 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:52.138 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:52.139 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:52.139 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:52.139 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:52.147 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:52.759 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:52.759 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:52.759 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.023 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.023 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.023 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.215 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.215 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.215 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.375 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.375 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.375 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.559 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.559 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.559 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.719 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.719 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.719 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.831 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.831 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.831 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:54.911 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:54.911 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:54.911 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:55.055 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:55.055 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:55.055 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:55.111 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:55.111 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:55.111 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:55.175 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:55.175 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:55.175 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:55.431 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:55.431 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:55.431 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:55.461 [INFO] [sway/main.c:375] Shutting down sway | |
00:00:55.461 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971d60 horizontally | |
00:00:55.461 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x5ad028f6f880 committing with 2 instructions | |
00:00:55.461 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x960@0,0 | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 260.000000 | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffe46971d60 horizontally | |
Io error: Broken pipe (os error 32) | |
thread 'main' panicked at 'Loop destroyed', /home/quack/.cargo/git/checkouts/libcosmic-b367e32ffc370f4f/481cd5a/iced/sctk/src/application.rs:1387:00:00:55.461 17 | |
[DEBUG] note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | |
[sway/tree/arrange.c:263] Usable area for ws: 1280x960@0,0 | |
00:00:55.461 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 260.000000 | |
00:00:55.461 [DEBUG] [sway/input/text_input.c:170] Disabling text input, but input method is gone | |
[019 14:58:50.667545] [glfw error 65544]: Wayland: fatal display error: Broken pipe | |
00:00:55.462 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:55.462 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
Gdk-Message: 14:58:50.667: Error reading events from display: Broken pipe | |
00:00:55.467 [DEBUG] [sway/tree/output.c:295] Disabling output 'DP-3' | |
00:00:55.467 [DEBUG] [sway/tree/workspace.c:162] Destroying workspace '1' | |
00:00:55.467 [DEBUG] [sway/ipc-server.c:301] Sending workspace::empty event | |
00:00:55.467 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 1280x960@0,0 | |
00:00:55.467 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '10' at 0.000000, 260.000000 | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:55.467 [DEBUG] [sway/tree/output.c:316] Destroying output 'DP-3' | |
00:00:55.467 [DEBUG] [sway/tree/output.c:295] Disabling output 'HDMI-A-6' | |
00:00:55.467 [DEBUG] [sway/tree/workspace.c:162] Destroying workspace '10' | |
00:00:55.467 [DEBUG] [sway/ipc-server.c:301] Sending workspace::empty event | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:55.467 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:55.467 [DEBUG] [sway/tree/output.c:316] Destroying output 'HDMI-A-6' | |
00:00:55.468 [DEBUG] [sway/input/input-manager.c:201] removing device: '0:0:Eee_PC_WMI_hotkeys' | |
00:00:55.468 [DEBUG] [sway/input/seat.c:962] removing device 0:0:Eee_PC_WMI_hotkeys from seat seat0 | |
00:00:55.468 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 0:0:Eee_PC_WMI_hotkeys from group 0x5ad0282b3cb0 | |
00:00:55.468 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:55.468 [DEBUG] [sway/input/seat.c:962] removing device 5426:580:Razer_Razer_Tartarus_Pro from seat seat0 | |
00:00:55.468 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:55.468 [DEBUG] [sway/input/seat.c:962] removing device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard from seat seat0 | |
00:00:55.468 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 5426:580:Razer_Razer_Tartarus_Pro_Keyboard from group 0x5ad0282b3cb0 | |
00:00:55.468 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:55.468 [DEBUG] [sway/input/seat.c:962] removing device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard from seat seat0 | |
00:00:55.468 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:55.468 [DEBUG] [sway/input/seat.c:962] removing device 5426:580:Razer_Razer_Tartarus_Pro from seat seat0 | |
00:00:55.468 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 5426:580:Razer_Razer_Tartarus_Pro from group 0x5ad0282b3cb0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 5426:122:Razer_Razer_Viper_Ultimate from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 5426:122:Razer_Razer_Viper_Ultimate from group 0x5ad0282b3cb0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 5426:122:Razer_Razer_Viper_Ultimate from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 5426:122:Razer_Razer_Viper_Ultimate from group 0x5ad0282b3cb0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 5426:122:Razer_Razer_Viper_Ultimate from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 5426:122:Razer_Razer_Viper_Ultimate from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control from group 0x5ad0282b3cb0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard from seat seat0 | |
00:00:55.469 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard from group 0x5ad0282b3cb0 | |
00:00:55.469 [DEBUG] [sway/input/input-manager.c:201] removing device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:55.469 [DEBUG] [sway/input/seat.c:962] removing device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control from group 0x5ad0282b3cb0 | |
00:00:55.470 [DEBUG] [sway/input/input-manager.c:201] removing device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:55.470 [DEBUG] [sway/input/seat.c:962] removing device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/input-manager.c:201] removing device: '9610:4102:SINO_WEALTH_USB_KEYBOARD' | |
00:00:55.470 [DEBUG] [sway/input/seat.c:962] removing device 9610:4102:SINO_WEALTH_USB_KEYBOARD from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD from group 0x5ad0282b3cb0 | |
00:00:55.470 [DEBUG] [sway/input/input-manager.c:201] removing device: '1133:2142:Logitech_BRIO_Consumer_Control' | |
00:00:55.470 [DEBUG] [sway/input/seat.c:962] removing device 1133:2142:Logitech_BRIO_Consumer_Control from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 1133:2142:Logitech_BRIO_Consumer_Control from group 0x5ad0282b3cb0 | |
00:00:55.470 [DEBUG] [sway/input/input-manager.c:201] removing device: '0:1:Power_Button' | |
00:00:55.470 [DEBUG] [sway/input/seat.c:962] removing device 0:1:Power_Button from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 0:1:Power_Button from group 0x5ad0282b3cb0 | |
00:00:55.470 [DEBUG] [sway/input/input-manager.c:201] removing device: '0:1:Power_Button' | |
00:00:55.470 [DEBUG] [sway/input/seat.c:962] removing device 0:1:Power_Button from seat seat0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:798] Removing keyboard 0:1:Power_Button from group 0x5ad0282b3cb0 | |
00:00:55.470 [DEBUG] [sway/input/keyboard.c:804] Destroying empty keyboard group 0x5ad0282b3cb0 | |
00:00:55.478 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:103] Destroying wlr_drm_lease_device_v1 for /dev/dri/card2 | |
ExceptionHandler::GenerateDump cloned child ExceptionHandler::WaitForContinueSignal waiting for continue signal... | |
124798 | |
ExceptionHandler::SendContinueSignalToChild sent continue signal to child | |
00:00:55.507 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:103] Destroying wlr_drm_lease_device_v1 for /dev/dri/card1 | |
00:00:55.518 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:681] Destroying wlr_drm_lease_v1_manager | |
00:00:55.518 [INFO] [sway/ipc-server.c:571] IPC Client 95 disconnected | |
00:00:55.518 [INFO] [sway/ipc-server.c:571] IPC Client 91 disconnected | |
Exiting due to channel error. | |
Exiting due to channel error. | |
Exiting due to channel error. | |
Exiting due to channel error. | |
Exiting due to channel error. | |
Exiting due to channel error. |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00:00:00.000 [INFO] [sway/main.c:294] Sway version 1.9-dev-5fc85c50 (Jan 18 2024, branch 'makepkg') | |
00:00:00.000 [INFO] [sway/main.c:295] wlroots version 0.18.0-dev | |
00:00:00.007 [INFO] [sway/main.c:82] Linux quackdock 6.7.0-zen3-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Sat, 13 Jan 2024 14:36:54 +0000 x86_64 GNU/Linux | |
00:00:00.007 [INFO] [sway/main.c:98] Contents of /etc/lsb-release: | |
00:00:00.007 [INFO] [sway/main.c:82] DISTRIB_ID="Arch" | |
00:00:00.007 [INFO] [sway/main.c:82] DISTRIB_RELEASE="rolling" | |
00:00:00.007 [INFO] [sway/main.c:82] DISTRIB_DESCRIPTION="Arch Linux" | |
00:00:00.007 [INFO] [sway/main.c:98] Contents of /etc/os-release: | |
00:00:00.007 [INFO] [sway/main.c:82] NAME="Arch Linux" | |
00:00:00.007 [INFO] [sway/main.c:82] PRETTY_NAME="Arch Linux" | |
00:00:00.007 [INFO] [sway/main.c:82] ID=arch | |
00:00:00.007 [INFO] [sway/main.c:82] BUILD_ID=rolling | |
00:00:00.007 [INFO] [sway/main.c:82] ANSI_COLOR="38;2;23;147;209" | |
00:00:00.007 [INFO] [sway/main.c:82] HOME_URL="https://archlinux.org/" | |
00:00:00.007 [INFO] [sway/main.c:82] DOCUMENTATION_URL="https://wiki.archlinux.org/" | |
00:00:00.007 [INFO] [sway/main.c:82] SUPPORT_URL="https://bbs.archlinux.org/" | |
00:00:00.007 [INFO] [sway/main.c:82] BUG_REPORT_URL="https://bugs.archlinux.org/" | |
00:00:00.007 [INFO] [sway/main.c:82] PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/" | |
00:00:00.007 [INFO] [sway/main.c:82] LOGO=archlinux-logo | |
00:00:00.007 [INFO] [sway/main.c:70] LD_LIBRARY_PATH= | |
00:00:00.007 [INFO] [sway/main.c:70] LD_PRELOAD= | |
00:00:00.007 [INFO] [sway/main.c:70] PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:$HOME/.local/bin:/usr/lib/emscripten:/home/quack/.local/share/flatpak/exports/bin:/var/lib/flatpak/exports/bin:/opt/flutter/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/rustup/bin:/home/quack/.local/bin:/home/quack/.cargo/bin | |
00:00:00.007 [INFO] [sway/main.c:70] SWAYSOCK= | |
00:00:00.007 [INFO] [sway/main.c:331] Starting sway version 1.9-dev-5fc85c50 (Jan 18 2024, branch 'makepkg') | |
00:00:00.007 [DEBUG] [sway/server.c:166] Initializing Wayland server | |
00:00:00.008 [INFO] [wlr] [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory | |
00:00:00.008 [INFO] [wlr] [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping | |
00:00:00.028 [INFO] [wlr] [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind' | |
00:00:00.028 [INFO] [wlr] [backend/session/session.c:109] Successfully loaded libseat session | |
00:00:00.029 [INFO] [wlr] [backend/backend.c:212] Found 1 GPUs | |
00:00:00.029 [INFO] [wlr] [backend/drm/backend.c:203] Initializing DRM backend for /dev/dri/card1 (i915) | |
00:00:00.029 [DEBUG] [wlr] [backend/drm/drm.c:111] Using atomic DRM interface | |
00:00:00.029 [DEBUG] [wlr] [backend/drm/drm.c:124] ADDFB2 modifiers supported | |
00:00:00.029 [INFO] [wlr] [backend/drm/drm.c:256] Found 4 DRM CRTCs | |
00:00:00.030 [INFO] [wlr] [backend/drm/drm.c:214] Found 24 DRM planes | |
00:00:00.053 [INFO] [wlr] [render/egl.c:206] Supported EGL client extensions: EGL_EXT_platform_base EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_KHR_platform_x11 EGL_EXT_platform_x11 EGL_EXT_platform_device EGL_MESA_platform_surfaceless EGL_EXT_explicit_device EGL_KHR_platform_wayland EGL_EXT_platform_wayland EGL_KHR_platform_gbm EGL_MESA_platform_gbm EGL_EXT_platform_xcb | |
00:00:00.061 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.063 [ERROR] [wlr] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. | |
" | |
00:00:00.067 [DEBUG] [wlr] [render/egl.c:487] Using EGL device /dev/dri/card1 | |
00:00:00.114 [INFO] [wlr] [render/egl.c:355] Using EGL 1.5 | |
00:00:00.114 [INFO] [wlr] [render/egl.c:356] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_query_reset_notification_strategy EGL_IMG_context_priority EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_context_flush_control EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image_base EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_gl_interop EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display | |
00:00:00.114 [INFO] [wlr] [render/egl.c:358] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node | |
00:00:00.114 [INFO] [wlr] [render/egl.c:360] EGL vendor: Mesa Project | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:121] Supported DMA-BUF formats: | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AB4H (0x48344241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] XB4H (0x48344258) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AB48 (0x38344241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] XB48 (0x38344258) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AR30 (0x30335241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] XR30 (0x30335258) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AB30 (0x30334241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AR24 (0x34325241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AB24 (0x34324241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] XR24 (0x34325258) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] XB24 (0x34324258) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AR15 (0x35315241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] AR12 (0x32315241) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] RG16 (0x36314752) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] R8 (0x20203852) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] R16 (0x20363152) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] GR88 (0x38385247) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] GR32 (0x32335247) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] YUV9 (0x39565559) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] YU11 (0x31315559) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] YU12 (0x32315559) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] YU16 (0x36315559) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:170] YU24 (0x34325559) | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.114 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YVU9 (0x39555659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YV11 (0x31315659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YV12 (0x32315659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YV16 (0x36315659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YV24 (0x34325659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] NV12 (0x3231564E) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] NV21 (0x3132564E) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] P010 (0x30313050) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] P012 (0x32313050) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] P016 (0x36313050) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] P030 (0x30333050) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] NV16 (0x3631564E) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] AYUV (0x56555941) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] XYUV (0x56555958) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y410 (0x30313459) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y412 (0x32313459) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y416 (0x36313459) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YUYV (0x56595559) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] YVYU (0x55595659) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] UYVY (0x59565955) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS (0x010000000000000A): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_MC_CCS (0x010000000000000B): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED_DG2_RC_CCS_CC (0x010000000000000C): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] VYUY (0x59555956) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y210 (0x30313259) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y212 (0x32313259) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:170] Y216 (0x36313259) | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] LINEAR (0x0000000000000000): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] X_TILED (0x0100000000000001): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:104] 4_TILED (0x0100000000000009): ✓ texture ✗ render | |
00:00:00.115 [DEBUG] [wlr] [render/egl.c:190] EGL DMA-BUF format modifiers supported | |
00:00:00.116 [DEBUG] [wlr] [render/egl.c:435] Obtained high priority context | |
00:00:00.116 [DEBUG] [wlr] [render/egl.c:536] Using EGL_PLATFORM_DEVICE_EXT | |
00:00:00.117 [INFO] [wlr] [render/gles2/renderer.c:548] Creating GLES2 renderer | |
00:00:00.117 [INFO] [wlr] [render/gles2/renderer.c:549] Using OpenGL ES 3.2 Mesa 24.1.0-devel (git-745282736e) | |
00:00:00.117 [INFO] [wlr] [render/gles2/renderer.c:550] GL vendor: Intel | |
00:00:00.117 [INFO] [wlr] [render/gles2/renderer.c:551] GL renderer: Mesa Intel(R) Arc(tm) A380 Graphics (DG2) | |
00:00:00.117 [INFO] [wlr] [render/gles2/renderer.c:552] Supported GLES2 extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_draw_instanced GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_AMD_performance_monitor 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_NV_pack_subimage GL_NV_texture_barrier GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_OES_viewport_array GL_ANGLE_pack_reverse_row_order GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_EXT_occlusion_query_boolean GL_EXT_robustness GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_APPLE_sync GL_EXT_draw_buffers GL_EXT_instanced_arrays GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_NV_generate_mipmap_sRGB GL_NV_pixel_buffer_object GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_debug_label GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_framebuffer_fetch GL_EXT_shader_group_vote GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_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_NV_shader_noperspective_interpolation 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_EXT_texture_sRGB_R8 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_clear_texture GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query GL_EXT_texture_compression_s3tc_srgb GL_MESA_shader_integer_functions GL_EXT_clip_control GL_EXT_color_buffer_half_float GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_NV_alpha_to_coverage_dither_control GL_EXT_EGL_image_storage GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_texture_shadow_lod GL_INTEL_blackhole_render GL_MESA_framebuffer_flip_y GL_NV_compute_shader_derivatives GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_sampler_objects GL_MESA_bgra GL_MESA_texture_const_bandwidth | |
00:00:00.117 [DEBUG] [wlr] [render/gles2/renderer.c:607] GPU reset notifications are enabled | |
00:00:00.124 [DEBUG] [wlr] [render/allocator/allocator.c:107] Trying to create gbm allocator | |
00:00:00.130 [DEBUG] [wlr] [render/allocator/gbm.c:213] Created GBM allocator with backend drm | |
00:00:00.130 [DEBUG] [wlr] [render/allocator/gbm.c:216] Using DRM node /dev/dri/card1 | |
00:00:00.130 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:635] Creating wlr_drm_lease_device_v1 for /dev/dri/card1 | |
00:00:00.130 [INFO] [wlr] [backend/headless/backend.c:67] Creating headless backend | |
00:00:00.132 [INFO] [sway/config.c:416] Loading config from /home/quack/.config/sway/config | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 1: # Default config for sway | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 2: # | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking. | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 4: # | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 5: # Read `man 5 sway` for a complete reference. | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 6: | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 7: ### Variables | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 8: # | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 9: # Logo key. Use Mod1 for Alt. | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 10: set $mod Mod4 | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $mod Mod4 | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $mod Mod4 | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 11: # Home row direction keys, like vim | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 12: set $left h | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $left h | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $left h | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 13: set $down j | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $down j | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $down j | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 14: set $up k | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $up k | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $up k | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 15: set $right l | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $right l | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $right l | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 16: # Your preferred terminal emulator | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 17: set $term kitty | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $term kitty | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $term kitty | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 18: # Your preferred application launcher | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 20: # on the original workspace that the command was run on. | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 21: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: set $menu dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 22: #set $menu "busctl --user call com.system76.CosmicWorkspaces /com/system76/CosmicWorkspaces com.system76.CosmicWorkspaces toggle" | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 23: | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 24: exec cosmic-app-library | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: exec cosmic-app-library | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: exec cosmic-app-library | |
00:00:00.133 [DEBUG] [sway/config.c:877] Deferring command `exec cosmic-app-library' | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 25: ### Output configuration | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 26: # | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 27: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) | |
00:00:00.133 [DEBUG] [sway/config.c:833] Read line 28: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.133 [INFO] [sway/commands.c:381] Config command: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.133 [INFO] [sway/commands.c:404] After replacement: output * bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.133 [DEBUG] [sway/commands.c:436] Subcommand: bg ~/Pictures/mpv/save/reine.png fill | |
00:00:00.133 [DEBUG] [sway/config/output.c:231] Adding output * config | |
00:00:00.133 [DEBUG] [sway/config/output.c:235] Config stored for output * (enabled: -1) ([email protected] position -1,-1 scale -1.000000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[0] = swaybg | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[1] = -o | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[2] = * | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[3] = -i | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[4] = /home/quack/Pictures/mpv/save/reine.png | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[5] = -m | |
00:00:00.133 [DEBUG] [sway/config/output.c:897] spawn_swaybg cmd[6] = fill | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 29: # | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 30: # Example configuration: | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 31: # | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 32: # output HDMI-A-1 resolution 1920x1080 position 1920,0 | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 33: # | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 34: # You can get the names of your outputs by running: swaymsg -t get_outputs | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 35: | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 36: #output DP-5 scale 1.5 position 1280,0 | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 37: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.137 [INFO] [sway/commands.c:381] Config command: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.137 [INFO] [sway/commands.c:404] After replacement: output DP-3 scale 1.4 position 1280,0 | |
00:00:00.137 [DEBUG] [sway/commands.c:436] Subcommand: scale 1.4 position 1280,0 | |
00:00:00.137 [DEBUG] [sway/commands.c:436] Subcommand: position 1280,0 | |
00:00:00.137 [DEBUG] [sway/config/output.c:218] Adding non-wildcard output config | |
00:00:00.137 [DEBUG] [sway/config/output.c:221] Merging on top of output * config | |
00:00:00.137 [DEBUG] [sway/config/output.c:235] Config stored for output DP-3 (enabled: -1) ([email protected] position 1280,0 scale 1.400000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.137 [DEBUG] [sway/config.c:833] Read line 38: #output HDMI-A-2 resolution 1280x960 position 0,260 | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 39: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.138 [INFO] [sway/commands.c:381] Config command: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.138 [INFO] [sway/commands.c:404] After replacement: output HDMI-A-6 resolution 1280x960 position 0,260 | |
00:00:00.138 [DEBUG] [sway/commands.c:436] Subcommand: resolution 1280x960 position 0,260 | |
00:00:00.138 [DEBUG] [sway/commands.c:436] Subcommand: position 0,260 | |
00:00:00.138 [DEBUG] [sway/config/output.c:218] Adding non-wildcard output config | |
00:00:00.138 [DEBUG] [sway/config/output.c:221] Merging on top of output * config | |
00:00:00.138 [DEBUG] [sway/config/output.c:235] Config stored for output HDMI-A-6 (enabled: -1) ([email protected] position 0,260 scale -1.000000 subpixel unknown transform -1) (bg /home/quack/Pictures/mpv/save/reine.png fill) (power -1) (max render time: -1) | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 40: | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 41: ### Idle configuration | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 42: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 43: # Example configuration: | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 44: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 45: # exec swayidle -w \ | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 46: # timeout 300 'swaylock -f -c 000000' \ | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 47: # timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 48: # before-sleep 'swaylock -f -c 000000' | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 49: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 50: # This will lock your screen after 300 seconds of inactivity, then turn off | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 51: # your displays after another 300 seconds, and turn your screens back on when | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 52: # resumed. It will also lock your screen before your computer goes to sleep. | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 53: | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 54: ### Input configuration | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 55: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 56: # Example configuration: | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 57: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 58: # input "2:14:SynPS/2_Synaptics_TouchPad" { | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 59: # dwt enabled | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 60: # tap enabled | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 61: # natural_scroll enabled | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 62: # middle_emulation enabled | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 63: # } | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 64: # | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 65: # You can get the names of your inputs by running: swaymsg -t get_inputs | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 66: # Read `man 5 sway-input` for more information about this section. | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 67: | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 68: input "8746:1:ILITEK_ILITEK-TP" { | |
00:00:00.138 [DEBUG] [sway/config.c:887] Entering block 'input "8746:1:ILITEK_ILITEK-TP"' | |
00:00:00.138 [DEBUG] [sway/config.c:833] Read line 69: map_to_output HDMI-A-6 | |
00:00:00.138 [INFO] [sway/commands.c:381] Config command: input "8746:1:ILITEK_ILITEK-TP" map_to_output HDMI-A-6 | |
00:00:00.138 [INFO] [sway/commands.c:404] After replacement: input "8746:1:ILITEK_ILITEK-TP" map_to_output HDMI-A-6 | |
00:00:00.138 [DEBUG] [sway/commands/input.c:57] entering input block: 8746:1:ILITEK_ILITEK-TP | |
00:00:00.138 [DEBUG] [sway/config/input.c:15] new_input_config(8746:1:ILITEK_ILITEK-TP) | |
00:00:00.138 [DEBUG] [sway/commands.c:436] Subcommand: map_to_output HDMI-A-6 | |
00:00:00.138 [DEBUG] [sway/config/input.c:15] new_input_config(temp) | |
00:00:00.141 [DEBUG] [sway/config/input.c:362] Config stored for input 8746:1:ILITEK_ILITEK-TP | |
00:00:00.141 [DEBUG] [sway/config.c:833] Read line 70: } | |
00:00:00.141 [DEBUG] [sway/config.c:904] Exiting block 'input "8746:1:ILITEK_ILITEK-TP"' | |
00:00:00.141 [DEBUG] [sway/config.c:833] Read line 71: input "8746:1:ILITEK_ILITEK-TP_Mouse" { | |
00:00:00.141 [DEBUG] [sway/config.c:887] Entering block 'input "8746:1:ILITEK_ILITEK-TP_Mouse"' | |
00:00:00.141 [DEBUG] [sway/config.c:833] Read line 72: map_to_output HDMI-A-6 | |
00:00:00.141 [INFO] [sway/commands.c:381] Config command: input "8746:1:ILITEK_ILITEK-TP_Mouse" map_to_output HDMI-A-6 | |
00:00:00.141 [INFO] [sway/commands.c:404] After replacement: input "8746:1:ILITEK_ILITEK-TP_Mouse" map_to_output HDMI-A-6 | |
00:00:00.142 [DEBUG] [sway/commands/input.c:57] entering input block: 8746:1:ILITEK_ILITEK-TP_Mouse | |
00:00:00.142 [DEBUG] [sway/config/input.c:15] new_input_config(8746:1:ILITEK_ILITEK-TP_Mouse) | |
00:00:00.142 [DEBUG] [sway/commands.c:436] Subcommand: map_to_output HDMI-A-6 | |
00:00:00.142 [DEBUG] [sway/config/input.c:15] new_input_config(temp) | |
00:00:00.144 [DEBUG] [sway/config/input.c:362] Config stored for input 8746:1:ILITEK_ILITEK-TP_Mouse | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 73: } | |
00:00:00.144 [DEBUG] [sway/config.c:904] Exiting block 'input "8746:1:ILITEK_ILITEK-TP_Mouse"' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 74: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 75: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 76: ### Key bindings | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 77: # | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 78: # Basics: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 79: # | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 80: # Start a terminal | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 81: bindsym $mod+Return exec $term | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Return exec $term | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Return exec kitty | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Return to command `exec kitty` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 82: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 83: # Kill focused window | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 84: bindsym $mod+Shift+q kill | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+q kill | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+q kill | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+q to command `kill` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 85: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 86: # Start your launcher | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 87: bindsym $mod+d exec $menu | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+d exec $menu | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+d exec dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+d to command `exec dmenu_path | dmenu | xargs swaymsg exec --` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 88: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 89: # Drag floating windows by holding down $mod and left mouse button. | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 90: # Resize them with right mouse button + $mod. | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 91: # Despite the name, also works for non-floating windows. | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 92: # Change normal to inverse to use left mouse button for resizing and right | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 93: # mouse button for dragging. | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 94: floating_modifier $mod normal | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: floating_modifier $mod normal | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: floating_modifier Mod4 normal | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 95: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 96: # Reload the configuration file | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 97: bindsym $mod+Shift+c reload | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+c reload | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+c reload | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+c to command `reload` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 98: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 99: # Exit sway (logs you out of your Wayland session) | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 100: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+e to command `exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 101: # | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 102: # Moving around: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 103: # | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 104: # Move your focus around | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 105: bindsym $mod+$left focus left | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$left focus left | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+h focus left | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+h to command `focus left` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 106: bindsym $mod+$down focus down | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$down focus down | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+j focus down | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+j to command `focus down` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 107: bindsym $mod+$up focus up | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$up focus up | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+k focus up | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+k to command `focus up` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 108: #bindsym $mod+$right focus right | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 109: # Or use $mod+[up|down|left|right] | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 110: bindsym $mod+Left focus left | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Left focus left | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Left focus left | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Left to command `focus left` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 111: bindsym $mod+Down focus down | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Down focus down | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Down focus down | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Down to command `focus down` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 112: bindsym $mod+Up focus up | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Up focus up | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Up focus up | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Up to command `focus up` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 113: bindsym $mod+Right focus right | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Right focus right | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Right focus right | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Right to command `focus right` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 114: | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 115: # Move the focused window with the same, but add Shift | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 116: bindsym $mod+Shift+$left move left | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$left move left | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+h move left | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+h to command `move left` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 117: bindsym $mod+Shift+$down move down | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$down move down | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+j move down | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+j to command `move down` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 118: bindsym $mod+Shift+$up move up | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$up move up | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+k move up | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+k to command `move up` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 119: bindsym $mod+Shift+$right move right | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$right move right | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+l move right | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+l to command `move right` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 120: # Ditto, with arrow keys | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 121: bindsym $mod+Shift+Left move left | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Left move left | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Left move left | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 122: bindsym $mod+Shift+Down move down | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Down move down | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Down move down | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 123: bindsym $mod+Shift+Up move up | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Up move up | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Up move up | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*' | |
00:00:00.144 [DEBUG] [sway/config.c:833] Read line 124: bindsym $mod+Shift+Right move right | |
00:00:00.144 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Right move right | |
00:00:00.144 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Right move right | |
00:00:00.144 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 125: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 126: # Workspaces: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 127: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 128: # Switch to workspace | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 129: bindsym $mod+1 workspace number 1 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+1 workspace number 1 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+1 workspace number 1 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+1 to command `workspace number 1` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 130: bindsym $mod+2 workspace number 2 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+2 workspace number 2 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+2 workspace number 2 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+2 to command `workspace number 2` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 131: bindsym $mod+3 workspace number 3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+3 workspace number 3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+3 workspace number 3 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+3 to command `workspace number 3` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 132: bindsym $mod+4 workspace number 4 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+4 workspace number 4 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+4 workspace number 4 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+4 to command `workspace number 4` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 133: bindsym $mod+5 workspace number 5 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+5 workspace number 5 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+5 workspace number 5 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+5 to command `workspace number 5` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 134: bindsym $mod+6 workspace number 6 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+6 workspace number 6 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+6 workspace number 6 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+6 to command `workspace number 6` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 135: bindsym $mod+7 workspace number 7 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+7 workspace number 7 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+7 workspace number 7 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+7 to command `workspace number 7` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 136: bindsym $mod+8 workspace number 8 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+8 workspace number 8 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+8 workspace number 8 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+8 to command `workspace number 8` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 137: bindsym $mod+9 workspace number 9 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+9 workspace number 9 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+9 workspace number 9 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+9 to command `workspace number 9` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 138: bindsym $mod+0 workspace number 10 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+0 workspace number 10 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+0 workspace number 10 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+0 to command `workspace number 10` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 139: # Move focused container to workspace | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 140: bindsym $mod+Shift+1 move container to workspace number 1 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+1 move container to workspace number 1 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+1 move container to workspace number 1 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+1 to command `move container to workspace number 1` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 141: bindsym $mod+Shift+2 move container to workspace number 2 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+2 move container to workspace number 2 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+2 move container to workspace number 2 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+2 to command `move container to workspace number 2` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 142: bindsym $mod+Shift+3 move container to workspace number 3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+3 move container to workspace number 3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+3 move container to workspace number 3 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+3 to command `move container to workspace number 3` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 143: bindsym $mod+Shift+4 move container to workspace number 4 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+4 move container to workspace number 4 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+4 move container to workspace number 4 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+4 to command `move container to workspace number 4` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 144: bindsym $mod+Shift+5 move container to workspace number 5 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+5 move container to workspace number 5 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+5 move container to workspace number 5 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+5 to command `move container to workspace number 5` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 145: bindsym $mod+Shift+6 move container to workspace number 6 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+6 move container to workspace number 6 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+6 move container to workspace number 6 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+6 to command `move container to workspace number 6` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 146: bindsym $mod+Shift+7 move container to workspace number 7 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+7 move container to workspace number 7 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+7 move container to workspace number 7 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+7 to command `move container to workspace number 7` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 147: bindsym $mod+Shift+8 move container to workspace number 8 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+8 move container to workspace number 8 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+8 move container to workspace number 8 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+8 to command `move container to workspace number 8` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 148: bindsym $mod+Shift+9 move container to workspace number 9 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+9 move container to workspace number 9 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+9 move container to workspace number 9 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+9 to command `move container to workspace number 9` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 149: bindsym $mod+Shift+0 move container to workspace number 10 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+0 move container to workspace number 10 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+0 move container to workspace number 10 | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+0 to command `move container to workspace number 10` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 150: # Note: workspaces can have any name you want, not just numbers. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 151: # We just use 1-10 as the default. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 152: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 153: workspace 1 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 1 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 1 output DP-3 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 154: workspace 10 output HDMI-A-6 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 10 output HDMI-A-6 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 10 output HDMI-A-6 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 155: workspace 9 output HDMI-A-6 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 9 output HDMI-A-6 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 9 output HDMI-A-6 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 156: workspace 3 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 3 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 3 output DP-3 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 157: workspace 4 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 4 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 4 output DP-3 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 158: workspace 5 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 5 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 5 output DP-3 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 159: workspace 6 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: workspace 6 output DP-3 | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: workspace 6 output DP-3 | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 160: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 161: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 162: # Layout stuff: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 163: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 164: # You can "split" the current object of your focus with | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 165: # $mod+b or $mod+v, for horizontal and vertical splits | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 166: # respectively. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 167: bindsym $mod+b splith | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+b splith | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+b splith | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+b to command `splith` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 168: bindsym $mod+v splitv | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+v splitv | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+v splitv | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+v to command `splitv` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 169: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 170: # Switch the current container between different layout styles | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 171: bindsym $mod+s layout stacking | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+s layout stacking | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+s layout stacking | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+s to command `layout stacking` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 172: bindsym $mod+w layout tabbed | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+w layout tabbed | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+w layout tabbed | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+w to command `layout tabbed` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 173: bindsym $mod+e layout toggle split | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+e layout toggle split | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+e layout toggle split | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+e to command `layout toggle split` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 174: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 175: # Make the current focus fullscreen | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 176: bindsym $mod+f fullscreen | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+f fullscreen | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+f fullscreen | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+f to command `fullscreen` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 177: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 178: # Toggle the current focus between tiling and floating mode | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 179: bindsym $mod+Shift+space floating toggle | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+space floating toggle | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+space floating toggle | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 180: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 181: # Swap focus between the tiling area and the floating area | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 182: bindsym $mod+space focus mode_toggle | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+space focus mode_toggle | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+space focus mode_toggle | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 183: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 184: # Move focus to the parent container | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 185: bindsym $mod+a focus parent | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+a focus parent | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+a focus parent | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+a to command `focus parent` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 186: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 187: # Scratchpad: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 188: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 189: # Sway has a "scratchpad", which is a bag of holding for windows. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 190: # You can send windows there and get them back later. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 191: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 192: # Move the currently focused window to the scratchpad | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 193: bindsym $mod+Shift+minus move scratchpad | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+minus move scratchpad | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+minus move scratchpad | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 194: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 195: # Show the next scratchpad window or hide the focused scratchpad window. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 196: # If there are multiple scratchpad windows, this command cycles through them. | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 197: bindsym $mod+minus scratchpad show | |
00:00:00.145 [INFO] [sway/commands.c:381] Config command: bindsym $mod+minus scratchpad show | |
00:00:00.145 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+minus scratchpad show | |
00:00:00.145 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 198: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 199: # Resizing containers: | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 200: # | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 201: mode "resize" { | |
00:00:00.145 [DEBUG] [sway/config.c:887] Entering block 'mode "resize"' | |
00:00:00.145 [DEBUG] [sway/config.c:833] Read line 202: # left will shrink the containers width | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 203: # right will grow the containers width | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 204: # up will shrink the containers height | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 205: # down will grow the containers height | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 206: bindsym $left resize shrink width 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $left resize shrink width 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym h resize shrink width 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym h resize shrink width 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound h to command `resize shrink width 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 207: bindsym $down resize grow height 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $down resize grow height 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym j resize grow height 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym j resize grow height 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound j to command `resize grow height 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 208: bindsym $up resize shrink height 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $up resize shrink height 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym k resize shrink height 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym k resize shrink height 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound k to command `resize shrink height 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 209: bindsym $right resize grow width 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $right resize grow width 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym l resize grow width 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym l resize grow width 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound l to command `resize grow width 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 210: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 211: # Ditto, with arrow keys | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 212: bindsym Left resize shrink width 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Left resize shrink width 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Left resize shrink width 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Left resize shrink width 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Left to command `resize shrink width 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 213: bindsym Down resize grow height 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Down resize grow height 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Down resize grow height 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Down resize grow height 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Down to command `resize grow height 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 214: bindsym Up resize shrink height 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Up resize shrink height 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Up resize shrink height 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Up resize shrink height 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Up to command `resize shrink height 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 215: bindsym Right resize grow width 10px | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Right resize grow width 10px | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Right resize grow width 10px | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Right resize grow width 10px | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Right to command `resize grow width 10px` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 216: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 217: # Return to default mode | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 218: bindsym Return mode "default" | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Return mode "default" | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Return mode "default" | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Return mode "default" | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Return to command `mode "default"` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 219: bindsym Escape mode "default" | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Escape mode "default" | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Escape mode "default" | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Escape mode "default" | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Escape to command `mode "default"` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 220: } | |
00:00:00.146 [DEBUG] [sway/config.c:904] Exiting block 'mode "resize"' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 221: bindsym $mod+r mode "resize" | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym $mod+r mode "resize" | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+r mode "resize" | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+r to command `mode "resize"` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 222: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 223: # | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 224: # Status Bar: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 225: # | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 226: # Read `man 5 sway-bar` for more information about this section. | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 227: bar { | |
00:00:00.146 [DEBUG] [sway/config.c:887] Entering block 'bar' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 228: #swaybar_command waybar | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 229: position top | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bar position top | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bar position top | |
00:00:00.146 [DEBUG] [sway/commands/bar.c:91] Creating bar: bar-0 | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: position top | |
00:00:00.146 [DEBUG] [sway/commands/bar/position.c:15] Setting bar position 'top' for bar: bar-0 | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 230: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 231: # When the status_command prints a new line to stdout, swaybar updates. | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 232: # The default just shows the current date and time. | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 233: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bar status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.146 [DEBUG] [sway/commands/bar/status_command.c:17] Feeding bar with status command: while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 234: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 235: colors { | |
00:00:00.146 [DEBUG] [sway/config.c:887] Entering block 'bar colors' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 236: statusline #ffffff | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bar colors statusline #ffffff | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bar colors statusline #ffffff | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: colors statusline #ffffff | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: statusline #ffffff | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 237: background #323232 | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bar colors background #323232 | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bar colors background #323232 | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: colors background #323232 | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: background #323232 | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 238: inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.146 [DEBUG] [sway/commands.c:436] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 239: } | |
00:00:00.146 [DEBUG] [sway/config.c:904] Exiting block 'bar colors' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 240: } | |
00:00:00.146 [DEBUG] [sway/config.c:904] Exiting block 'bar' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 241: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 242: # | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 243: # screen capture | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 244: # | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 245: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 246: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym Alt+Print exec 'slurp | grim -g - - | wl-copy -t image/png' | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Alt+Print to command `exec 'slurp | grim -g - - | wl-copy -t image/png'` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 247: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 248: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioRaiseVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+' | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioRaiseVolume to command `exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+'` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 249: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioLowerVolume exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-' | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioLowerVolume to command `exec 'wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-'` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 250: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym XF86AudioMute exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle' | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound XF86AudioMute to command `exec 'wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle'` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 251: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 252: bindsym $mod+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: bindsym $mod+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+l exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle' | |
00:00:00.146 [DEBUG] [sway/commands/bind.c:298] bindsym - Bound Mod4+l to command `exec 'busctl --user call com.system76.CosmicAppLibrary /com/system76/CosmicAppLibrary com.system76.CosmicAppLibrary Toggle'` for device '*' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 253: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 254: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [DEBUG] [sway/config.c:877] Deferring command `exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 255: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.146 [DEBUG] [sway/config.c:877] Deferring command `exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 256: #for_window [title="Smithay"] floating enable | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 257: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 258: include /etc/sway/config.d/* | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: include /etc/sway/config.d/* | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: include /etc/sway/config.d/* | |
00:00:00.146 [INFO] [sway/config.c:416] Loading config from /etc/sway/config.d/50-systemd-user.conf | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 2: # See FS#63021 | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal. | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 4: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 5: # Upstream refuses to set XDG_CURRENT_DESKTOP so we have to. | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 6: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.146 [DEBUG] [sway/config.c:877] Deferring command `exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 10: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.146 [INFO] [sway/commands.c:381] Config command: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.146 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.146 [DEBUG] [sway/config.c:877] Deferring command `exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP' | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 11: | |
00:00:00.146 [DEBUG] [sway/config.c:833] Read line 16: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.147 [INFO] [sway/commands.c:381] Config command: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.147 [INFO] [sway/commands.c:404] After replacement: exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
00:00:00.147 [DEBUG] [sway/config.c:877] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY' | |
00:00:00.167 [INFO] [sway/realtime.c:35] Failed to set scheduling priority to 1 | |
00:00:00.167 [DEBUG] [sway/server.c:393] Initializing Xwayland (lazy=1) | |
00:00:00.167 [INFO] [sway/server.c:420] Starting backend on wayland display 'wayland-1' | |
00:00:00.167 [DEBUG] [wlr] [backend/libinput/backend.c:88] Starting libinput backend | |
00:00:00.452 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Power Button [0:1] | |
00:00:00.452 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:1:Power_Button' | |
00:00:00.452 [DEBUG] [sway/input/input-manager.c:183] no fallback seat config - creating default | |
00:00:00.452 [DEBUG] [sway/config/seat.c:66] Adding non-wildcard seat config | |
00:00:00.452 [DEBUG] [sway/config/seat.c:83] Config stored for seat seat0 | |
00:00:00.452 [DEBUG] [sway/input/input-manager.c:599] applying seat config for seat seat0 | |
00:00:00.452 [DEBUG] [sway/input/seat.c:942] adding device 0:1:Power_Button to seat seat0 | |
00:00:00.462 [DEBUG] [sway/input/keyboard.c:907] Created keyboard group 0x58c8b184b5f0 | |
00:00:00.462 [DEBUG] [sway/input/keyboard.c:930] Adding keyboard 0:1:Power_Button to group 0x58c8b184b5f0 | |
00:00:00.477 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Power Button [0:1] | |
00:00:00.477 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:1:Power_Button' | |
00:00:00.477 [DEBUG] [sway/input/seat.c:942] adding device 0:1:Power_Button to seat seat0 | |
00:00:00.487 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 0:1:Power_Button to group 0x58c8b184b5f0 | |
00:00:00.490 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Logitech BRIO Consumer Control [1133:2142] | |
00:00:00.490 [DEBUG] [sway/input/input-manager.c:233] adding device: '1133:2142:Logitech_BRIO_Consumer_Control' | |
00:00:00.490 [DEBUG] [sway/input/seat.c:942] adding device 1133:2142:Logitech_BRIO_Consumer_Control to seat seat0 | |
00:00:00.500 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 1133:2142:Logitech_BRIO_Consumer_Control to group 0x58c8b184b5f0 | |
00:00:00.501 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD [9610:4102] | |
00:00:00.501 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD' | |
00:00:00.501 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD to seat seat0 | |
00:00:00.505 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD to group 0x58c8b184b5f0 | |
00:00:00.506 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD Consumer Control [9610:4102] | |
00:00:00.506 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:00.506 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to seat seat0 | |
00:00:00.511 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to group 0x58c8b184b5f0 | |
00:00:00.512 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control' | |
00:00:00.512 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control to seat seat0 | |
00:00:00.524 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:225] Loaded cursor theme 'default' at size 24 (123 available cursors) | |
00:00:00.524 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:00.524 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD Keyboard [9610:4102] | |
00:00:00.524 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard' | |
00:00:00.524 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard to seat seat0 | |
00:00:00.529 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_Keyboard to group 0x58c8b184b5f0 | |
00:00:00.530 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding SINO WEALTH USB KEYBOARD System Control [9610:4102] | |
00:00:00.530 [DEBUG] [sway/input/input-manager.c:233] adding device: '9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control' | |
00:00:00.530 [DEBUG] [sway/input/seat.c:942] adding device 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control to seat seat0 | |
00:00:00.534 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 9610:4102:SINO_WEALTH_USB_KEYBOARD_System_Control to group 0x58c8b184b5f0 | |
00:00:00.535 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.535 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.535 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.535 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.535 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.535 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.535 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.540 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:122:Razer_Razer_Viper_Ultimate to group 0x58c8b184b5f0 | |
00:00:00.541 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.541 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.541 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.541 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Viper Ultimate [5426:122] | |
00:00:00.541 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:122:Razer_Razer_Viper_Ultimate' | |
00:00:00.541 [DEBUG] [sway/input/seat.c:942] adding device 5426:122:Razer_Razer_Viper_Ultimate to seat seat0 | |
00:00:00.555 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:122:Razer_Razer_Viper_Ultimate to group 0x58c8b184b5f0 | |
00:00:00.557 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Sony Interactive Entertainment Wireless Controller Touchpad [1356:2508] | |
00:00:00.557 [DEBUG] [sway/input/input-manager.c:233] adding device: '1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:00.557 [DEBUG] [sway/input/seat.c:942] adding device 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad to seat seat0 | |
00:00:00.557 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.557 [DEBUG] [wlr] [backend/libinput/events.c:130] libinput gesture not handled | |
00:00:00.557 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Sony Interactive Entertainment Wireless Controller Touchpad [1356:3302] | |
00:00:00.557 [DEBUG] [sway/input/input-manager.c:233] adding device: '1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad' | |
00:00:00.557 [DEBUG] [sway/input/seat.c:942] adding device 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad to seat seat0 | |
00:00:00.557 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.557 [DEBUG] [wlr] [backend/libinput/events.c:130] libinput gesture not handled | |
00:00:00.557 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro [5426:580] | |
00:00:00.557 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:00.557 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro to seat seat0 | |
00:00:00.561 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:580:Razer_Razer_Tartarus_Pro to group 0x58c8b184b5f0 | |
00:00:00.562 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro Keyboard [5426:580] | |
00:00:00.562 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:00.562 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to seat seat0 | |
00:00:00.567 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to group 0x58c8b184b5f0 | |
00:00:00.568 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro_Keyboard' | |
00:00:00.568 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro_Keyboard to seat seat0 | |
00:00:00.568 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:00.568 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Razer Razer Tartarus Pro [5426:580] | |
00:00:00.568 [DEBUG] [sway/input/input-manager.c:233] adding device: '5426:580:Razer_Razer_Tartarus_Pro' | |
00:00:00.568 [DEBUG] [sway/input/seat.c:942] adding device 5426:580:Razer_Razer_Tartarus_Pro to seat seat0 | |
00:00:00.568 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:00.568 [DEBUG] [wlr] [backend/libinput/events.c:70] Adding Eee PC WMI hotkeys [0:0] | |
00:00:00.568 [DEBUG] [sway/input/input-manager.c:233] adding device: '0:0:Eee_PC_WMI_hotkeys' | |
00:00:00.568 [DEBUG] [sway/input/seat.c:942] adding device 0:0:Eee_PC_WMI_hotkeys to seat seat0 | |
00:00:00.572 [DEBUG] [sway/input/keyboard.c:882] Adding keyboard 0:0:Eee_PC_WMI_hotkeys to group 0x58c8b184b5f0 | |
00:00:00.573 [DEBUG] [wlr] [backend/libinput/backend.c:129] libinput successfully initialized | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1564] Scanning DRM connectors on /dev/dri/card1 | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-1' | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-1' | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-2' | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-2' | |
00:00:00.573 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-3' | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'DP-3' | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1640] 'DP-3' connected | |
00:00:00.588 [DEBUG] [wlr] [backend/drm/drm.c:1434] Current CRTC: 80 | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1448] Detected modes: | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 3840x2160 @ 59.997 Hz (preferred) | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 3840x2160 @ 30.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 2560x1440 @ 59.951 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1920x1080 @ 59.940 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1600x900 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x1024 @ 60.020 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x800 @ 59.810 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1152x864 @ 59.972 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1280x720 @ 59.940 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 1024x768 @ 60.004 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 800x600 @ 60.317 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 720x480 @ 59.940 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 60.000 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1476] 640x480 @ 59.940 Hz | |
00:00:00.588 [INFO] [wlr] [backend/drm/drm.c:1496] Physical size: 600x340 | |
00:00:00.590 [INFO] [wlr] [backend/drm/drm.c:1615] Found connector 'HDMI-A-4' | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1227] Reallocating CRTCs | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1238] State before reallocation: | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-1': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-1': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-2': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-2': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-3': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'DP-3': crtc=0 status=connected want_crtc=1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1252] 'HDMI-A-4': crtc=-1 status=disconnected want_crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1301] State after reallocation: | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-1': crtc=-1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-1': crtc=-1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-2': crtc=-1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-2': crtc=-1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-3': crtc=-1 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'DP-3': crtc=0 | |
00:00:00.590 [DEBUG] [wlr] [backend/drm/drm.c:1305] 'HDMI-A-4': crtc=-1 | |
00:00:00.590 [INFO] [wlr] [backend/drm/drm.c:1676] connector DP-3: Requesting modeset | |
00:00:00.590 [DEBUG] [sway/desktop/output.c:454] New output 0x58c8b1d2aba0: DP-3 (non-desktop: 0) | |
00:00:00.590 [DEBUG] [sway/config/output.c:401] Turning on output DP-3 | |
00:00:00.590 [DEBUG] [sway/config/output.c:414] Set preferred mode | |
00:00:00.590 [DEBUG] [wlr] [types/output/render.c:127] Attaching empty buffer to output for modeset | |
00:00:00.590 [DEBUG] [wlr] [types/output/swapchain.c:27] Choosing primary buffer format XR24 (0x34325258) for output 'DP-3' | |
00:00:00.590 [DEBUG] [wlr] [types/output/swapchain.c:96] Testing swapchain for output 'DP-3' | |
00:00:00.590 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.590 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 3840x2160 GBM buffer with format XR24 (0x34325258), modifier 4_TILED_DG2_RC_CCS_CC (0x010000000000000C) | |
00:00:00.590 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3840x2160 | |
00:00:00.592 [DEBUG] [sway/config/output.c:448] Auto-detected output transform: 0 | |
00:00:00.592 [DEBUG] [sway/config/output.c:476] Set DP-3 scale to 1.400000 | |
00:00:00.592 [DEBUG] [sway/config/output.c:520] Committing output DP-3 | |
00:00:00.592 [DEBUG] [wlr] [types/output/render.c:127] Attaching empty buffer to output for modeset | |
00:00:00.592 [INFO] [wlr] [backend/drm/drm.c:798] connector DP-3: Modesetting with 3840x2160 @ 59.997 Hz | |
00:00:00.600 [DEBUG] [sway/config/output.c:555] Set DP-3 scale_filter to linear | |
00:00:00.600 [DEBUG] [sway/config/output.c:563] Set DP-3 position to 1280, 0 | |
00:00:00.620 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:225] Loaded cursor theme 'default' at size 33 (123 available cursors) | |
00:00:00.622 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.622 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:00.622 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output DP-3 | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 1 | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10' | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10' | |
00:00:00.622 [DEBUG] [sway/tree/output.c:164] Creating default workspace 1 | |
00:00:00.622 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 1 for output DP-3 | |
00:00:00.622 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.622 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.622 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.622 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1542@0,0 | |
00:00:00.622 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 0.000000 | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:580:Razer_Razer_Tartarus_Pro_Keyboard | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:3302:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 1356:2508:Sony_Interactive_Entertainment_Wireless_Controller_Touchpad | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 5426:122:Razer_Razer_Viper_Ultimate | |
00:00:00.622 [DEBUG] [sway/input/seat.c:690] Applying input mapping to 9610:4102:SINO_WEALTH_USB_KEYBOARD_Consumer_Control | |
00:00:00.622 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d7bda0 committing with 2 instructions | |
00:00:00.622 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d7bda0 | |
00:00:00.622 [INFO] [wlr] [backend/headless/backend.c:17] Starting headless backend | |
00:00:00.622 [DEBUG] [sway/config/bar.c:265] Invoking swaybar for bar id 'bar-0' | |
00:00:00.632 [DEBUG] [sway/config/bar.c:258] Spawned swaybar bar-0 | |
00:00:00.632 [DEBUG] [sway/config.c:682] Running deferred commands | |
00:00:00.632 [INFO] [sway/commands.c:261] Handling command 'exec cosmic-app-library' | |
00:00:00.632 [DEBUG] [sway/commands/exec_always.c:58] Executing cosmic-app-library | |
00:00:00.639 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123259 | |
00:00:00.639 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123259 | |
00:00:00.639 [INFO] [sway/commands.c:261] Handling command 'exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway' | |
00:00:00.639 [DEBUG] [sway/commands/exec_always.c:58] Executing dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway | |
00:00:00.649 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123261 | |
00:00:00.649 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123261 | |
00:00:00.649 [INFO] [sway/commands.c:261] Handling command 'exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1' | |
00:00:00.649 [DEBUG] [sway/commands/exec_always.c:58] Executing /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 | |
00:00:00.659 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123264 | |
00:00:00.659 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123264 | |
00:00:00.659 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway' | |
00:00:00.659 [DEBUG] [sway/commands/exec_always.c:58] Executing systemctl --user set-environment XDG_CURRENT_DESKTOP=sway | |
00:00:00.669 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123266 | |
00:00:00.669 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123266 | |
00:00:00.669 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP' | |
00:00:00.669 [DEBUG] [sway/commands/exec_always.c:58] Executing systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP | |
00:00:00.680 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123268 | |
00:00:00.680 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123268 | |
00:00:00.680 [INFO] [sway/commands.c:261] Handling command 'exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY' | |
00:00:00.680 [DEBUG] [sway/commands/exec_always.c:58] Executing hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY | |
Environment variable $XDG_CURRENT_DESKTOP not set, ignoring. | |
00:00:00.688 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123270 | |
00:00:00.688 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123270 | |
00:00:00.688 [INFO] [sway/server.c:432] Running compositor on wayland display 'wayland-1' | |
00:00:00.689 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:00.689 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 3840x2160 GBM buffer with format XR24 (0x34325258), modifier 4_TILED_DG2_RC_CCS_CC (0x010000000000000C) | |
00:00:00.689 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3840x2160 | |
00:00:00.693 [DEBUG] [sway/ipc-server.c:197] New client: fd 76 | |
00:00:00.693 [DEBUG] [sway/ipc-server.c:197] New client: fd 80 | |
2024-01-19 14:55:25 - [swaybg/main.c:260] Found config * for output DP-3 (LG Electronics LG HDR 4K 0x00016489) | |
00:00:00.693 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b199bfc0 (res 0x58c8b1d32500) | |
00:00:00.693 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x58c8b1f7df90 (res 0x58c8b1d32860) | |
00:00:00.693 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.695 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b199e470 (res 0x58c8b1d35a60) | |
00:00:00.703 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b195dae0 (res 0x58c8b1d36120) | |
Failed to get config: [Io(Os { code: 2, kind: NotFound, message: "No such file or directory" })] | |
00:00:00.718 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b195eff0 (res 0x58c8b1d380a0) | |
00:00:00.718 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b194c360 (res 0x58c8b1d38400) | |
00:00:00.736 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b194a760 (res 0x58c8b1d38ac0) | |
00:00:00.736 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:470] new layer_surface 0x58c8b1752d80 (res 0x58c8b1d38be0) | |
00:00:00.736 [DEBUG] [sway/desktop/layer_shell.c:353] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0, | |
00:00:00.743 [DEBUG] [sway/desktop/layer_shell.c:85] Usable area changed, rearranging output | |
00:00:00.743 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:00.743 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:00.743 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b193f020 committing with 1 instructions | |
00:00:00.743 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b193f020 | |
00:00:03.358 [DEBUG] [sway/commands/bind.c:619] running command for binding: exec dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:03.358 [INFO] [sway/commands.c:261] Handling command 'exec dmenu_path | dmenu | xargs swaymsg exec --' | |
00:00:03.358 [DEBUG] [sway/commands/exec_always.c:58] Executing dmenu_path | dmenu | xargs swaymsg exec -- | |
00:00:03.369 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123304 | |
00:00:03.369 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123304 | |
00:00:03.388 [INFO] [wlr] [xwayland/server.c:108] Starting Xwayland on :0 | |
Failed to initialize glamor, falling back to sw | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:03.537 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b199f170 (res 0x58c8b1d3e640) | |
00:00:03.537 [DEBUG] [wlr] [xwayland/server.c:273] Xserver is ready | |
00:00:03.538 [DEBUG] [wlr] [xwayland/xwm.c:1961] xfixes version: 6.0 | |
00:00:03.538 [DEBUG] [wlr] [xwayland/xwm.c:1982] xres version: 1.2 | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.538 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.539 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Unsupported maximum keycode 708, clipping. | |
> X11 cannot support keycodes above 255. | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:03.549 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.549 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:03.549 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.549 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:03.616 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.616 [DEBUG] [sway/desktop/xwayland.c:877] New xwayland unmanaged surface | |
00:00:03.616 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:03.616 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b193df50 (res 0x58c8b1d3f960) | |
00:00:03.616 [DEBUG] [wlr] [xwayland/xwm.c:1744] New xwayland surface: 0x58c8b193df50 | |
00:00:03.616 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:04.038 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:04.038 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:07.311 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:07.311 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:07.312 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:08.323 [DEBUG] [sway/ipc-server.c:197] New client: fd 93 | |
00:00:08.323 [INFO] [sway/commands.c:261] Handling command 'exec' | |
00:00:08.323 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195ce00 committing with 2 instructions | |
00:00:08.323 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195ce00 | |
00:00:08.323 [INFO] [sway/ipc-server.c:571] IPC Client 93 disconnected | |
00:00:10.286 [DEBUG] [sway/commands/bind.c:619] running command for binding: exec kitty | |
00:00:10.286 [INFO] [sway/commands.c:261] Handling command 'exec kitty' | |
00:00:10.286 [DEBUG] [sway/commands/exec_always.c:58] Executing kitty | |
00:00:10.297 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123339 | |
00:00:10.297 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123339 | |
[019 14:55:34.783689] Ignoring unknown config key: resize_draw_strategy | |
00:00:10.475 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1940410 (res 0x58c8b1d39a80) | |
00:00:10.475 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b193c0d0 (res 0x58c8b1d39ba0) | |
00:00:10.484 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b193c4b0 (res 0x58c8b1d3ba00) | |
00:00:10.484 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1938190 (res 0x58c8b1d269c0) | |
00:00:10.518 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x58c8b1f01120 (res 0x58c8b1d04d20) | |
00:00:10.518 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:10.518 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:216] new xdg_toplevel_decoration 0x58c8b193e410 (res 0x58c8b1c85210) | |
00:00:10.552 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:10.552 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:10.555 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2552x1812 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:10.556 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:10.556 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:10.556 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091b80 horizontally | |
00:00:10.556 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d04350 committing with 3 instructions | |
00:00:10.556 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:10.556 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:10.556 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:10.556 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:10.556 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:10.556 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:10.556 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:10.556 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:10.561 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:10.561 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d04350 is ready | |
00:00:10.561 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d04350 | |
00:00:10.619 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:10.636 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:10.653 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 5476x2976 | |
00:00:12.214 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.214 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.214 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.334 [DEBUG] [sway/commands/bind.c:619] running command for binding: exec kitty | |
00:00:12.334 [INFO] [sway/commands.c:261] Handling command 'exec kitty' | |
00:00:12.334 [DEBUG] [sway/commands/exec_always.c:58] Executing kitty | |
00:00:12.345 [DEBUG] [sway/commands/exec_always.c:111] Child process created with pid 123388 | |
00:00:12.345 [DEBUG] [sway/commands/exec_always.c:113] Recording workspace for process 123388 | |
[019 14:55:36.830431] Ignoring unknown config key: resize_draw_strategy | |
00:00:12.512 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1938570 (res 0x58c8b1d34a20) | |
00:00:12.512 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1d5db20 (res 0x58c8b1d34900) | |
00:00:12.551 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x58c8b1d5df00 (res 0x58c8b1d2f060) | |
00:00:12.551 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:12.551 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:216] new xdg_toplevel_decoration 0x58c8b1d62180 (res 0x58c8b1cc0c90) | |
00:00:12.583 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.583 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:12.586 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2552x1812 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:12.587 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:12.587 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:12.587 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091b80 horizontally | |
00:00:12.587 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc8570 committing with 4 instructions | |
00:00:12.588 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.588 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:12.588 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.588 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:12.588 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.588 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:12.588 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.588 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.588 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.588 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:12.588 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:12.588 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:12.589 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:12.594 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:12.594 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc8570 is ready | |
00:00:12.594 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc8570 | |
00:00:12.600 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:12.604 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:12.620 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:12.636 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:13.204 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc8570 committing with 4 instructions | |
00:00:13.204 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc8570 | |
00:00:13.206 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.206 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:13.206 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.206 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:13.207 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.207 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:13.207 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.207 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.207 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.207 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.207 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.207 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.208 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:13.208 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:13.208 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:13.209 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.209 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.209 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.750 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.750 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.750 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:13.918 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:13.918 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:13.918 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.030 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.030 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.030 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.446 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.446 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.446 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.582 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.582 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.582 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.726 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.726 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.726 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.878 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.878 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.878 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:14.910 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:14.910 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:14.910 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:15.126 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:15.126 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:15.126 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:15.198 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:15.198 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:15.198 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:15.710 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:15.710 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:15.710 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:17.998 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:17.998 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:17.998 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:18.331 [INFO] [wlr] [xwayland/server.c:215] Restarting Xwayland (lazy) | |
00:00:18.433 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1c561c0 committing with 4 instructions | |
00:00:18.433 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1c561c0 | |
00:00:18.434 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.434 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:18.434 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.434 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:18.525 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.525 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:18.525 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.525 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:18.525 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:18.525 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.525 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:18.525 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:18.526 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:18.526 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:18.526 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:19.206 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:19.206 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:19.206 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:19.318 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:19.318 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:19.318 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:19.470 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:19.470 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:19.470 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:19.614 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:19.614 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:19.614 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:19.662 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:19.662 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:19.662 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:20.030 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:20.030 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:20.030 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:20.446 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:20.446 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:20.446 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:22.352 [INFO] [wlr] [xwayland/server.c:108] Starting Xwayland on :0 | |
Failed to initialize glamor, falling back to sw | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:22.521 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1e515f0 (res 0x58c8b1d3ed00) | |
00:00:22.522 [DEBUG] [wlr] [xwayland/server.c:273] Xserver is ready | |
00:00:22.522 [DEBUG] [wlr] [xwayland/xwm.c:1961] xfixes version: 6.0 | |
00:00:22.523 [DEBUG] [wlr] [xwayland/xwm.c:1982] xres version: 1.2 | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.524 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
The XKEYBOARD keymap compiler (xkbcomp) reports: | |
> Warning: Unsupported maximum keycode 708, clipping. | |
> X11 cannot support keycodes above 255. | |
> Warning: Could not resolve keysym XF86CameraAccessEnable | |
> Warning: Could not resolve keysym XF86CameraAccessDisable | |
> Warning: Could not resolve keysym XF86CameraAccessToggle | |
> Warning: Could not resolve keysym XF86NextElement | |
> Warning: Could not resolve keysym XF86PreviousElement | |
> Warning: Could not resolve keysym XF86AutopilotEngageToggle | |
> Warning: Could not resolve keysym XF86MarkWaypoint | |
> Warning: Could not resolve keysym XF86Sos | |
> Warning: Could not resolve keysym XF86NavChart | |
> Warning: Could not resolve keysym XF86FishingChart | |
> Warning: Could not resolve keysym XF86SingleRangeRadar | |
> Warning: Could not resolve keysym XF86DualRangeRadar | |
> Warning: Could not resolve keysym XF86RadarOverlay | |
> Warning: Could not resolve keysym XF86TraditionalSonar | |
> Warning: Could not resolve keysym XF86ClearvuSonar | |
> Warning: Could not resolve keysym XF86SidevuSonar | |
> Warning: Could not resolve keysym XF86NavInfo | |
Errors from xkbcomp are not fatal to the X server | |
00:00:22.537 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.537 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:22.537 [DEBUG] [wlr] [xwayland/selection/selection.c:149] not handling selection events: no seat assigned to xwayland | |
00:00:22.537 [DEBUG] [wlr] [xwayland/xwm.c:1652] unhandled X11 event: MappingNotify (34) | |
00:00:22.808 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1f869e0 (res 0x58c8b19426b0) | |
00:00:22.808 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1f86dc0 (res 0x58c8b1d34fc0) | |
00:00:22.808 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1f871a0 (res 0x58c8b1931020) | |
00:00:22.808 [DEBUG] [wlr] [types/wlr_compositor.c:768] New wlr_surface 0x58c8b1f87580 (res 0x58c8b1cbf230) | |
00:00:22.808 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:407] new xdg_surface 0x58c8b1f86530 (res 0x58c8b1d3a260) | |
00:00:22.808 [DEBUG] [sway/desktop/xdg_shell.c:534] New xdg_shell toplevel title='(null)' app_id='(null)' | |
00:00:22.808 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:216] new xdg_toplevel_decoration 0x58c8b1f89950 (res 0x58c8b1d06160) | |
00:00:22.850 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:22.917 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1344x756 | |
00:00:22.917 [DEBUG] [sway/desktop/launcher.c:82] Looking up workspace for pid 123466 | |
00:00:22.918 [DEBUG] [sway/tree/view.c:426] View 0x58c8b1eef2b0 updated CSD to 1 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:22.918 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:22.918 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:22.918 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091b80 horizontally | |
00:00:22.918 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef0d30 committing with 5 instructions | |
00:00:22.919 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:22.919 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:22.919 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:22.919 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:22.919 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:22.919 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:22.919 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1344x756 | |
00:00:22.920 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1820x2976 | |
00:00:22.920 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1820x2976 | |
00:00:22.921 [DEBUG] [sway/desktop/idle_inhibit_v1.c:29] New sway idle inhibitor | |
00:00:22.938 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 910x1488 | |
00:00:22.938 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef0d30 is ready | |
00:00:22.938 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef0d30 | |
00:00:22.942 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1820x2976 | |
00:00:22.942 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1820x2976 | |
00:00:22.954 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 910x1488 | |
00:00:22.987 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1274x2083 | |
00:00:23.031 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1274x2083 | |
00:00:23.229 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1274x2083 | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
*** BUG *** | |
In pixman_region32_union_rect: Invalid rectangle passed | |
Set a breakpoint on '_pixman_log_error' to debug | |
00:00:24.830 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:24.830 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:24.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc0920e0 horizontally | |
00:00:24.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc091fe0 vertically | |
00:00:24.830 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b177ee60 committing with 5 instructions | |
00:00:24.830 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:24.830 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:24.830 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:24.830 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:24.831 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:24.832 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:24.855 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1022 | |
00:00:24.855 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b177ee60 is ready | |
00:00:24.855 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b177ee60 | |
00:00:24.860 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:24.860 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:24.870 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1022 | |
00:00:24.888 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1022 | |
00:00:25.049 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1c85dd0 committing with 5 instructions | |
00:00:25.049 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1c85dd0 | |
00:00:25.050 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:25.050 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:25.050 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:25.050 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:25.050 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:25.050 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:25.050 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:25.050 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:25.050 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:25.050 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:25.050 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:25.962 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:25.962 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:25.962 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc0920e0 horizontally | |
00:00:25.962 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc091fe0 vertically | |
00:00:25.962 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f10 horizontally | |
00:00:25.962 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc3ae0 committing with 6 instructions | |
00:00:25.962 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:25.962 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:25.962 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:25.963 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:25.993 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1022 | |
00:00:25.993 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc3ae0 is ready | |
00:00:25.993 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc3ae0 | |
00:00:26.003 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1022 | |
00:00:26.006 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:26.020 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1022 | |
00:00:26.021 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:26.038 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1458 | |
00:00:26.087 [DEBUG] [sway/input/cursor.c:887] denying request to set cursor from unfocused client | |
00:00:26.299 [DEBUG] [wlr] [render/swapchain.c:106] Allocating new swapchain buffer | |
00:00:26.299 [DEBUG] [wlr] [render/allocator/gbm.c:145] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000) | |
00:00:26.299 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 256x256 | |
00:00:26.301 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d3f060 committing with 6 instructions | |
00:00:26.301 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d3f060 | |
00:00:26.302 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.302 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:26.302 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.302 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.727 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.727 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.727 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.727 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.757 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.757 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.757 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1902e80 committing with 5 instructions | |
00:00:26.757 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.757 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.757 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.757 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.757 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1456 | |
00:00:26.757 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1456 | |
00:00:26.763 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.763 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.769 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.769 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.771 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.771 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.775 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.775 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.777 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.777 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.781 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.781 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.783 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.783 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.785 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.785 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.787 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.787 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.794 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1023 | |
00:00:26.794 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1902e80 is ready | |
00:00:26.794 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1902e80 | |
00:00:26.795 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d02940 committing with 5 instructions | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.795 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.795 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.795 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.795 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.795 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.797 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1438 | |
00:00:26.797 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1438 | |
00:00:26.797 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.797 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.799 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.799 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.801 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.801 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.803 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.803 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.803 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1023 | |
00:00:26.805 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.805 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.807 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.807 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.809 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.809 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.811 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.811 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.813 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.813 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.815 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.815 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.817 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.817 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.819 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.819 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.827 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1036 | |
00:00:26.827 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d02940 is ready | |
00:00:26.827 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d02940 | |
00:00:26.828 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fcc130 committing with 5 instructions | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.830 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.835 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.835 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.835 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1386 | |
00:00:26.835 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.835 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.835 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1386 | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.835 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.837 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.837 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.837 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1036 | |
00:00:26.839 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.839 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.841 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.841 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.843 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.843 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.845 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.845 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.847 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.847 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.849 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.849 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.851 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.851 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.853 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.853 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.859 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1072 | |
00:00:26.860 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fcc130 is ready | |
00:00:26.860 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fcc130 | |
00:00:26.860 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d40070 committing with 5 instructions | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.862 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.862 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.862 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.862 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1292 | |
00:00:26.862 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.862 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.862 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1292 | |
00:00:26.863 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.863 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.865 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.865 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.867 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.867 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.869 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.869 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.870 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1072 | |
00:00:26.871 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.871 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.873 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.873 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.875 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.875 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.877 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.877 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.879 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.879 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.883 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.883 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.885 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.885 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.887 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.887 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.896 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1138 | |
00:00:26.896 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d40070 is ready | |
00:00:26.896 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d40070 | |
00:00:26.897 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1e4cb40 committing with 5 instructions | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.897 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.897 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.897 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.897 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.898 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1198 | |
00:00:26.898 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x1198 | |
00:00:26.899 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.899 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.901 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.901 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.903 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.903 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.903 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1138 | |
00:00:26.905 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.905 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.907 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.907 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.909 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.909 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.911 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.911 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.913 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.913 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.915 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.915 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.917 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.917 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.919 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.919 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.921 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.921 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.923 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.923 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.925 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.925 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.927 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.927 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.929 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.929 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.931 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.931 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.933 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.933 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.935 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.935 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.937 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.937 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.939 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.939 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.941 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.941 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.950 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1204 | |
00:00:26.950 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1e4cb40 is ready | |
00:00:26.950 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1e4cb40 | |
00:00:26.951 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fcbe90 committing with 5 instructions | |
00:00:26.952 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1204 | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.952 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.952 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.952 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.952 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.952 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.953 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x986 | |
00:00:26.953 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x986 | |
00:00:26.953 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.953 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.959 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1204 | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.959 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.961 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.961 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.963 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.963 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.965 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.965 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.967 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.967 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.969 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.969 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.974 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1352 | |
00:00:26.974 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fcbe90 is ready | |
00:00:26.974 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fcbe90 | |
00:00:26.975 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b177ee60 committing with 5 instructions | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.977 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.977 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.977 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x870 | |
00:00:26.977 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:26.977 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:26.977 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x870 | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.977 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.979 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.981 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.981 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.983 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.983 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.985 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.985 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.987 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.987 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.988 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1352 | |
00:00:26.989 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.989 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.991 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.991 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.993 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.993 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.995 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.995 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.997 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.997 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:26.999 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:26.999 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.001 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.001 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.003 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.003 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.011 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1434 | |
00:00:27.011 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b177ee60 is ready | |
00:00:27.011 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b177ee60 | |
00:00:27.012 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d40070 committing with 5 instructions | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.015 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.015 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.015 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.015 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x816 | |
00:00:27.015 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.015 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.016 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x816 | |
00:00:27.017 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.017 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.019 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.019 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.020 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1434 | |
00:00:27.023 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.023 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.025 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.025 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.027 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.027 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.031 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.031 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.033 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.033 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.035 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.035 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.037 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.037 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.048 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1471 | |
00:00:27.048 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d40070 is ready | |
00:00:27.048 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d40070 | |
00:00:27.049 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fdfec0 committing with 5 instructions | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.049 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.049 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.049 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.049 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.049 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.050 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x788 | |
00:00:27.051 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x788 | |
00:00:27.051 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.051 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.053 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.053 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.053 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1471 | |
00:00:27.055 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.055 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.059 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.059 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.061 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.061 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.063 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.063 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.065 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.065 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.069 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.069 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.082 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1491 | |
00:00:27.082 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fdfec0 is ready | |
00:00:27.082 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fdfec0 | |
00:00:27.083 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d2e1c0 committing with 5 instructions | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.083 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.083 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.083 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.083 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.083 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.084 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x762 | |
00:00:27.084 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x762 | |
00:00:27.088 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.089 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.089 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1491 | |
00:00:27.089 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.089 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.093 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.093 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.097 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.097 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.101 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.101 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.112 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1509 | |
00:00:27.112 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d2e1c0 is ready | |
00:00:27.112 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d2e1c0 | |
00:00:27.113 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fdff00 committing with 5 instructions | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.114 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.114 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.114 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.115 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x742 | |
00:00:27.115 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.115 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.115 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x742 | |
00:00:27.117 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.117 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.120 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1509 | |
00:00:27.121 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.121 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.125 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.125 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.129 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.129 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.133 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.133 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.137 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.137 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.148 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1523 | |
00:00:27.148 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fdff00 is ready | |
00:00:27.148 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fdff00 | |
00:00:27.149 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fcbe90 committing with 5 instructions | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.150 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.150 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.150 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.150 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.150 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.151 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x724 | |
00:00:27.151 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x724 | |
00:00:27.151 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.151 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.153 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.153 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.154 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1523 | |
00:00:27.159 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.160 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.160 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.160 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.160 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.160 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.161 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.161 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.163 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.163 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.165 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.169 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.171 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.171 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.173 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.173 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.175 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.175 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.188 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1536 | |
00:00:27.188 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fcbe90 is ready | |
00:00:27.188 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fcbe90 | |
00:00:27.189 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b177ee60 committing with 5 instructions | |
00:00:27.189 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1536 | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.189 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.190 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.191 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.191 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.191 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.191 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.191 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x688 | |
00:00:27.191 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.191 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.191 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x688 | |
00:00:27.193 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.193 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.195 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.197 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.197 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.199 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.199 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.203 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.203 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.203 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1536 | |
00:00:27.205 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.205 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.207 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.207 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.209 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.209 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.211 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.211 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.215 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.217 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.217 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.219 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.219 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.230 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1561 | |
00:00:27.230 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b177ee60 is ready | |
00:00:27.230 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b177ee60 | |
00:00:27.232 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1c85980 committing with 5 instructions | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.232 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.232 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.232 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.232 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.232 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.233 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.233 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.233 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x646 | |
00:00:27.234 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x646 | |
00:00:27.238 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.238 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.239 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1561 | |
00:00:27.241 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.241 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.245 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.245 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.262 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1590 | |
00:00:27.262 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1c85980 is ready | |
00:00:27.262 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1c85980 | |
00:00:27.263 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195e0d0 committing with 5 instructions | |
00:00:27.265 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.265 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.265 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.265 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.265 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.265 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.271 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1590 | |
00:00:27.296 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.296 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b195e0d0 is ready | |
00:00:27.296 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195e0d0 | |
00:00:27.300 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.300 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.304 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.322 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.509 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.509 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.509 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1c8f2b0 committing with 5 instructions | |
00:00:27.509 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.509 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.509 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.509 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.510 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x630 | |
00:00:27.510 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x630 | |
00:00:27.547 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1602 | |
00:00:27.547 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1c8f2b0 is ready | |
00:00:27.547 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1c8f2b0 | |
00:00:27.548 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.548 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.548 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1f89740 committing with 5 instructions | |
00:00:27.548 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.548 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.548 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.549 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.549 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.549 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.549 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.549 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.549 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.549 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.551 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.551 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.551 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.553 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x628 | |
00:00:27.553 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.553 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.553 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1602 | |
00:00:27.556 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.556 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.557 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.557 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.559 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.559 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.561 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.563 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.563 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.565 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.565 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.567 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.567 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.569 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.571 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.571 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.575 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.575 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.588 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.588 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1f89740 is ready | |
00:00:27.588 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1f89740 | |
00:00:27.589 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1905590 committing with 5 instructions | |
00:00:27.589 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.592 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.592 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.592 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.592 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.592 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x594 | |
00:00:27.592 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.592 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.592 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x594 | |
00:00:27.595 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.597 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.597 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.601 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.601 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.603 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1603 | |
00:00:27.607 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.607 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.617 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.632 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1627 | |
00:00:27.632 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1905590 is ready | |
00:00:27.632 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1905590 | |
00:00:27.633 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fd0490 committing with 5 instructions | |
00:00:27.633 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.633 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.633 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.633 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.633 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.633 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.634 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x570 | |
00:00:27.635 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x570 | |
00:00:27.635 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.638 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1627 | |
00:00:27.643 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.643 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.649 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.649 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.655 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.661 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.671 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.671 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.685 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1644 | |
00:00:27.685 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fd0490 is ready | |
00:00:27.685 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fd0490 | |
00:00:27.686 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d2e1c0 committing with 5 instructions | |
00:00:27.686 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.686 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.686 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.686 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.686 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.686 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.689 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1644 | |
00:00:27.689 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x554 | |
00:00:27.689 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x554 | |
00:00:27.708 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1655 | |
00:00:27.708 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d2e1c0 is ready | |
00:00:27.708 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d2e1c0 | |
00:00:27.710 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fccda0 committing with 5 instructions | |
00:00:27.712 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.712 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.713 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.713 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.713 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x552 | |
00:00:27.713 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.713 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.713 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x552 | |
00:00:27.721 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1655 | |
00:00:27.727 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.727 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.749 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1656 | |
00:00:27.750 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fccda0 is ready | |
00:00:27.750 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fccda0 | |
00:00:27.750 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d025c0 committing with 5 instructions | |
00:00:27.751 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.751 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.751 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.751 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.751 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.751 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.751 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x548 | |
00:00:27.752 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x548 | |
00:00:27.753 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1656 | |
00:00:27.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1659 | |
00:00:27.781 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d025c0 is ready | |
00:00:27.781 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d025c0 | |
00:00:27.782 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fe0850 committing with 5 instructions | |
00:00:27.782 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.782 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.782 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.782 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.783 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x546 | |
00:00:27.783 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x546 | |
00:00:27.789 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1659 | |
00:00:27.813 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1660 | |
00:00:27.813 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1fe0850 is ready | |
00:00:27.813 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fe0850 | |
00:00:27.818 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x546 | |
00:00:27.818 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x546 | |
00:00:27.821 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1660 | |
00:00:27.839 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3833x1660 | |
00:00:27.989 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:27.989 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:27.989 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cf61b0 committing with 5 instructions | |
00:00:27.989 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cf61b0 | |
00:00:27.990 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.990 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:27.990 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:27.990 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:28.331 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc9550 committing with 6 instructions | |
00:00:28.331 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc9550 | |
00:00:28.332 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.332 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:28.332 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.332 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.332 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.332 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.332 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.332 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.332 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.332 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.332 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.355 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1902e80 committing with 6 instructions | |
00:00:28.355 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1902e80 | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.356 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.356 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.356 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.356 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:28.356 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:28.387 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cfbc70 committing with 6 instructions | |
00:00:28.387 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cfbc70 | |
00:00:28.389 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.389 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:28.389 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:28.389 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:30.632 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '72e2e87faa91f94c7fb728205f58f051' has expired | |
00:00:30.639 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token 'c7e3bb863f57de2d36597f00a2d1f284' has expired | |
00:00:30.649 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '0bf6ccb0b68c848beeaa72690ef0bd61' has expired | |
00:00:30.660 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token 'd37acdf68c78fce8aa8a10ef6fd505f6' has expired | |
00:00:30.669 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token 'bfdec92b76b3d594800d102855de5ef7' has expired | |
00:00:30.680 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token '929040191ee36e408848fea337a42a4b' has expired | |
00:00:31.751 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195f7d0 committing with 6 instructions | |
00:00:31.751 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195f7d0 | |
00:00:31.752 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:31.752 [INFO] [sway/input/text_input.c:144] Enabling text input when input method is gone | |
00:00:31.752 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:31.752 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:31.752 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:31.752 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:31.752 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:31.752 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:32.814 [INFO] [wlr] [xwayland/server.c:215] Restarting Xwayland (lazy) | |
00:00:33.358 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:47] Activation token 'd08476d736ac178342cb530875d2c0b2' has expired | |
00:00:33.905 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:33.905 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:33.905 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc0920e0 horizontally | |
00:00:33.905 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc091fe0 vertically | |
00:00:33.905 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f10 horizontally | |
00:00:33.905 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef0fa0 committing with 6 instructions | |
00:00:33.906 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:33.906 [DEBUG] [sway/input/text_input.c:159] Text input committed update | |
00:00:33.906 [INFO] [sway/input/text_input.c:161] Text input committed, but input method is gone | |
00:00:33.907 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:33.943 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1660 | |
00:00:33.943 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef0fa0 is ready | |
00:00:33.943 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef0fa0 | |
00:00:33.948 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2734x2976 | |
00:00:33.953 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1660 | |
00:00:33.970 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1914x1660 | |
00:00:34.551 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1fcca20 committing with 5 instructions | |
00:00:34.551 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1fcca20 | |
00:00:34.552 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.552 [DEBUG] [sway/input/text_input.c:182] Disabling text input, but no longer focused | |
00:00:34.552 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:34.552 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.157 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.157 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.157 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.157 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.161 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.161 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef0f80 committing with 6 instructions | |
00:00:35.161 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.161 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.161 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.161 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.165 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.165 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.165 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.166 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2736x544 | |
00:00:35.167 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2732x2976 | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.171 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.171 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.171 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.171 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.171 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.175 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.175 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.175 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.175 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.175 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.177 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.181 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.181 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.181 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.181 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.181 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.183 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.183 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.183 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.183 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.183 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.185 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.185 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.185 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.185 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.185 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.190 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1915x1662 | |
00:00:35.190 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef0f80 is ready | |
00:00:35.190 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef0f80 | |
00:00:35.192 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1933e80 committing with 6 instructions | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.192 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.194 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.194 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.194 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.194 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.194 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.194 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.194 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.194 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.194 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.194 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2716x2976 | |
00:00:35.195 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2752x540 | |
00:00:35.195 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.195 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.195 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.197 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.197 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.197 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.197 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.197 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.199 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.199 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.199 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.199 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.199 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.201 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.201 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.201 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.201 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.201 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.203 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1915x1662 | |
00:00:35.203 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.203 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.203 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.203 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.203 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.205 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.205 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.205 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.205 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.205 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.207 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.207 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.207 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.207 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.207 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.209 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.209 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.209 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.209 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.209 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.211 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.211 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.211 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.211 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.211 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.213 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.213 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.215 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.215 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.215 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.217 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.217 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.217 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.217 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.217 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.219 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.219 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.219 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.219 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.219 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.225 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1926x1665 | |
00:00:35.225 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1933e80 is ready | |
00:00:35.225 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1933e80 | |
00:00:35.226 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cf3270 committing with 6 instructions | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.226 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.228 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.228 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.228 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.228 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.228 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.228 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.228 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.228 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.228 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.229 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.229 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.229 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.229 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.229 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.229 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2810x538 | |
00:00:35.229 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2658x2976 | |
00:00:35.231 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.231 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.231 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.231 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.231 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.233 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.233 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.233 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.233 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.233 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.235 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.235 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.235 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.235 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.235 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.237 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1926x1665 | |
00:00:35.237 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.237 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.237 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.237 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.237 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.239 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.239 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.239 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.239 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.239 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.241 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.241 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.241 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.241 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.241 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.243 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.243 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.243 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.243 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.243 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.245 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.245 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.245 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.245 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.245 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.247 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.247 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.247 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.247 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.247 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.249 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.249 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.249 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.249 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.249 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.251 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.251 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.251 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.251 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.251 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.259 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1967x1666 | |
00:00:35.259 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cf3270 is ready | |
00:00:35.259 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cf3270 | |
00:00:35.260 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.260 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.262 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.262 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.262 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.262 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.262 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.262 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.262 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.262 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2918x538 | |
00:00:35.262 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.262 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.263 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2550x2976 | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.265 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.265 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.265 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.265 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.265 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.267 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.267 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.267 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.267 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.267 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.269 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.269 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.269 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.269 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.269 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.270 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1967x1666 | |
00:00:35.271 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.271 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.271 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.271 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.271 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.273 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.273 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.273 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.273 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.273 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.275 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.275 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.275 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.275 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.275 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.277 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.277 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.277 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.277 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.277 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.279 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.281 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.281 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.283 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.283 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.283 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.283 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.283 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.285 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.285 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.285 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.285 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.285 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.292 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2043x1666 | |
00:00:35.292 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:35.292 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:35.294 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b199be00 committing with 6 instructions | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.294 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.296 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.296 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.296 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.296 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.296 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.296 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.296 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.296 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3054x546 | |
00:00:35.296 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.296 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.296 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2414x2976 | |
00:00:35.297 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.297 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.297 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.297 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.297 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.299 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.299 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.299 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.299 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.299 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.301 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.301 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.301 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.301 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.301 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.303 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2043x1666 | |
00:00:35.303 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.303 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.303 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.303 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.303 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.305 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.305 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.305 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.305 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.305 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.307 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.307 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.307 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.307 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.307 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.309 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.309 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.309 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.309 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.309 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.311 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.311 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.311 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.311 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.311 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.313 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.313 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.313 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.313 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.313 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.315 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.315 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.315 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.317 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.317 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.317 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.317 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.317 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.319 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.319 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.319 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.319 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.319 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.326 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2138x1660 | |
00:00:35.326 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b199be00 is ready | |
00:00:35.326 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b199be00 | |
00:00:35.328 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b183bec0 committing with 6 instructions | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.328 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.330 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.330 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.330 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.330 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3174x546 | |
00:00:35.330 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.330 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.330 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2294x2976 | |
00:00:35.331 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.331 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.331 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.331 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.331 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.333 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.333 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.333 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.333 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.333 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.335 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.335 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.335 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.335 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.335 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.337 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2138x1660 | |
00:00:35.337 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.337 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.337 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.337 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.337 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.339 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.341 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.341 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.341 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.341 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.341 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.343 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.343 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.343 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.343 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.343 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.345 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.345 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.345 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.345 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.345 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.351 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.351 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.351 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.359 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2222x1660 | |
00:00:35.359 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b183bec0 is ready | |
00:00:35.359 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b183bec0 | |
00:00:35.360 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef0f80 committing with 6 instructions | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.360 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.362 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.362 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.362 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.362 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3288x536 | |
00:00:35.362 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.362 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.363 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2180x2976 | |
00:00:35.363 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.363 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.363 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.363 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.363 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.365 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.365 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.365 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.365 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.365 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.367 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.367 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.367 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.367 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.367 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.369 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.369 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.369 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.369 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.369 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.370 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2222x1660 | |
00:00:35.371 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.371 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.371 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.371 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.371 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.373 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.373 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.373 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.373 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.373 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.375 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.375 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.375 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.375 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.375 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.377 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.377 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.377 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.377 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.377 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.381 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.381 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.381 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.381 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.381 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.383 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.383 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.383 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.383 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.383 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.385 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.385 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.385 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.385 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.385 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.387 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.387 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.387 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.387 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.387 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.391 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.391 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.391 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.391 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.391 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.393 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.393 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.393 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.393 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.393 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.395 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.395 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.395 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.395 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.395 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.397 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.397 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.397 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.397 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.397 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.399 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.399 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.399 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.399 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.399 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.401 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.401 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.401 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.401 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.401 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.410 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2302x1667 | |
00:00:35.410 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef0f80 is ready | |
00:00:35.410 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef0f80 | |
00:00:35.411 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:35.411 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2302x1667 | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.411 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.413 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.413 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.413 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.413 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.413 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.413 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.413 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.413 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.413 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.415 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2056x2976 | |
00:00:35.415 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3412x530 | |
00:00:35.415 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.415 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.415 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.415 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.415 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.417 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.417 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.417 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.417 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.417 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.419 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.420 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2302x1667 | |
00:00:35.421 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.421 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.421 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.421 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.421 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.423 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.423 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.423 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.423 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.423 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.425 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.425 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.425 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.425 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.425 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.427 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.427 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.427 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.427 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.427 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.429 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.429 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.429 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.429 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.429 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.431 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.431 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.431 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.431 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.431 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.433 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.433 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.433 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.433 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.433 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.435 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.435 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.435 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.435 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.435 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.437 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.437 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.437 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.437 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.437 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.441 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2388x1672 | |
00:00:35.441 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:35.441 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:35.443 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d80010 committing with 6 instructions | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.445 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.445 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.445 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.445 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3456x526 | |
00:00:35.445 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.445 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.446 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2012x2976 | |
00:00:35.447 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.447 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.447 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.447 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.447 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.449 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.449 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.449 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.449 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.449 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.453 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2388x1672 | |
00:00:35.453 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.453 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.453 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.453 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.453 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.455 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.455 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.455 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.455 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.455 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.457 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.457 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.457 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.457 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.457 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.459 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.459 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.459 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.459 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.459 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.463 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.463 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.463 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.463 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.463 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.465 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.465 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.465 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.465 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.465 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.467 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.467 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.467 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.467 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.467 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.476 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2419x1674 | |
00:00:35.476 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d80010 is ready | |
00:00:35.476 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d80010 | |
00:00:35.478 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b199be00 committing with 6 instructions | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.478 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.479 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.479 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.479 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.479 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.480 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.480 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.480 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3516x516 | |
00:00:35.480 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.480 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.480 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1952x2976 | |
00:00:35.481 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.481 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.481 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.481 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.481 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.483 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.485 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.485 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.485 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.485 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.485 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.487 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2419x1674 | |
00:00:35.487 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.487 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.487 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.487 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.487 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.489 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.489 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.489 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.489 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.489 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.491 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.493 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.493 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.493 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.493 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.493 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.495 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.495 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.495 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.495 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.495 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.497 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.497 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.497 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.497 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.497 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.499 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.499 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.499 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.499 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.499 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.501 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.509 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2461x1681 | |
00:00:35.509 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b199be00 is ready | |
00:00:35.509 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b199be00 | |
00:00:35.510 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d393c0 committing with 6 instructions | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.510 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.511 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.512 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.513 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.513 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.513 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.513 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.513 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.513 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.513 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.513 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.513 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.514 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3590x504 | |
00:00:35.515 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1878x2976 | |
00:00:35.515 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.515 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.515 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.515 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.515 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.517 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.517 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.517 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.517 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.517 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.519 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.519 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.519 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.519 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.519 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.520 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2461x1681 | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.521 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.523 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.523 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.523 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.523 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.523 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.525 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.525 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.525 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.525 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.525 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.527 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.527 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.527 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.527 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.527 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.529 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.529 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.529 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.529 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.529 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.531 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.531 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.531 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.531 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.531 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.533 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.535 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.535 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.535 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.535 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.535 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.543 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2513x1690 | |
00:00:35.543 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d393c0 is ready | |
00:00:35.543 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d393c0 | |
00:00:35.544 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef9c60 committing with 6 instructions | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.545 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.546 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.546 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.546 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.546 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.546 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.546 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.546 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.546 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.546 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.547 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3648x496 | |
00:00:35.548 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1820x2976 | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.549 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.551 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.551 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.551 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.551 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.551 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.553 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2513x1690 | |
00:00:35.553 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.553 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.553 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.553 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.553 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.555 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.555 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.555 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.555 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.555 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.557 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.559 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.559 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.559 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.559 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.559 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.561 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.561 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.561 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.563 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.565 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.565 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.565 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.565 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.565 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.567 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.567 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.567 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.567 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.567 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.576 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2554x1695 | |
00:00:35.576 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef9c60 is ready | |
00:00:35.576 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef9c60 | |
00:00:35.578 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1992d50 committing with 6 instructions | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.578 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.580 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.580 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.580 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.580 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.580 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.580 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.580 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.580 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.580 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.581 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3712x480 | |
00:00:35.581 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1756x2976 | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.581 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.583 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.583 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.585 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.585 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.585 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.585 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.585 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.587 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2554x1695 | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.587 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.589 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.589 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.591 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.591 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.591 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.591 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.591 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.593 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.593 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.593 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.593 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.593 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.597 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.597 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.597 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.597 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.597 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.599 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.599 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.599 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.599 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.599 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.601 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.601 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.601 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.601 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.601 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.609 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2598x1707 | |
00:00:35.610 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1992d50 is ready | |
00:00:35.610 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1992d50 | |
00:00:35.611 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.611 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.613 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.613 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.613 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.613 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.614 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3782x468 | |
00:00:35.614 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1686x2976 | |
00:00:35.615 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.615 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.615 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.615 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.615 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.617 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.617 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.617 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.619 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.619 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.619 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.619 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.619 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.620 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2598x1707 | |
00:00:35.621 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.621 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.621 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.621 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.621 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.623 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.623 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.623 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.623 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.623 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.625 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.625 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.625 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.625 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.625 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.627 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.627 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.627 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.627 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.627 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.629 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.629 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.629 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.629 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.629 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.631 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.631 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.631 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.631 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.631 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.633 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.633 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.633 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.635 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.635 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.635 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.637 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.637 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.637 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.637 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.637 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.644 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2647x1715 | |
00:00:35.644 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:35.644 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:35.645 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ccd770 committing with 6 instructions | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.647 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.647 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.647 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.647 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.648 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3836x466 | |
00:00:35.648 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1632x2976 | |
00:00:35.649 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.649 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.649 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.649 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.649 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.651 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.651 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.651 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.651 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.651 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.653 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.653 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2647x1715 | |
00:00:35.655 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.655 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.655 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.657 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.657 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.657 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.657 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.657 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.659 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.659 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.659 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.659 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.659 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.661 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.661 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.661 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.663 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.663 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.663 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.663 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.663 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.665 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.665 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.665 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.665 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.665 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.667 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.667 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.667 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.667 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.667 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.669 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.669 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.669 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.669 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.669 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.678 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2685x1716 | |
00:00:35.678 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ccd770 is ready | |
00:00:35.678 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ccd770 | |
00:00:35.679 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195d200 committing with 6 instructions | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.679 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.681 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.681 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.681 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.681 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.681 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.681 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.681 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.681 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.681 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.682 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3876x462 | |
00:00:35.683 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1592x2976 | |
00:00:35.683 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.683 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.683 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.683 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.683 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.685 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.685 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.685 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.685 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.685 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.687 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.687 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.687 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.687 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.687 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.687 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2685x1716 | |
00:00:35.689 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.689 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.689 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.689 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.689 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.691 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.691 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.691 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.691 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.691 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.693 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.693 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.693 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.693 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.693 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.695 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.695 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.695 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.695 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.695 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.697 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.697 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.697 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.697 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.697 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.701 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.701 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.701 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.701 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.701 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.710 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2713x1719 | |
00:00:35.710 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b195d200 is ready | |
00:00:35.710 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195d200 | |
00:00:35.711 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d40070 committing with 6 instructions | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.711 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.712 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.713 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.713 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.713 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.713 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.714 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3928x466 | |
00:00:35.714 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1540x2976 | |
00:00:35.715 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.715 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.715 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.715 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.715 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.717 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.717 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.719 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.719 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.719 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.719 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.719 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.720 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2713x1719 | |
00:00:35.721 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.721 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.721 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.721 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.721 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.723 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.725 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.725 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.725 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.725 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.725 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.729 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.731 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.731 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.731 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.731 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.731 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.733 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.733 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.733 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.733 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.733 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.735 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.735 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.745 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2750x1716 | |
00:00:35.745 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d40070 is ready | |
00:00:35.745 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d40070 | |
00:00:35.746 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1936b30 committing with 6 instructions | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.746 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.748 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.748 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.748 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.748 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.748 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.749 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3960x476 | |
00:00:35.749 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1508x2976 | |
00:00:35.749 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.749 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.749 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.749 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.749 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.753 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2750x1716 | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.753 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.757 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.757 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.757 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.757 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.757 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.759 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.759 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.761 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.761 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.761 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.761 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.761 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.763 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.767 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.767 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.767 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.767 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.767 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.769 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.769 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.777 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2772x1709 | |
00:00:35.777 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1936b30 is ready | |
00:00:35.777 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1936b30 | |
00:00:35.778 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1992d50 committing with 6 instructions | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.779 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.780 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.780 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.781 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.781 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.781 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.781 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.781 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.781 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.781 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.781 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.781 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.781 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3982x490 | |
00:00:35.782 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1486x2976 | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.783 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.787 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.787 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2772x1709 | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.791 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.793 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.797 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.799 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.799 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.801 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.801 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.801 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.801 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.801 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.811 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2787x1700 | |
00:00:35.811 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1992d50 is ready | |
00:00:35.811 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1992d50 | |
00:00:35.812 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1933e80 committing with 6 instructions | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.812 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.814 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.814 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.814 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.814 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.815 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.815 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1464x2976 | |
00:00:35.816 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4004x510 | |
00:00:35.817 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.817 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.820 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2787x1700 | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.821 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.825 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.825 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.827 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.831 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.831 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.833 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.844 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2803x1686 | |
00:00:35.844 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1933e80 is ready | |
00:00:35.844 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1933e80 | |
00:00:35.845 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.846 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.847 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.847 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.847 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.847 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.848 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.848 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.849 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4018x534 | |
00:00:35.849 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1450x2976 | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.851 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.853 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2803x1686 | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.858 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.859 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.859 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.859 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.859 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.859 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.861 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.861 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.865 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.869 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.877 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2813x1669 | |
00:00:35.877 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:35.877 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:35.878 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1f88e70 committing with 6 instructions | |
00:00:35.880 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.880 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.880 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.880 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.881 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.881 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.881 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.881 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.881 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.882 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4032x552 | |
00:00:35.882 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1436x2976 | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.887 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.887 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2813x1669 | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.891 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.897 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.901 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.901 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.911 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2822x1656 | |
00:00:35.911 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1f88e70 is ready | |
00:00:35.911 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1f88e70 | |
00:00:35.912 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d40070 committing with 6 instructions | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.914 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.914 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.914 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.914 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.914 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.915 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1424x2976 | |
00:00:35.916 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4044x566 | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.919 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.920 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2822x1656 | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.927 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.931 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.931 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.935 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.935 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.935 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.935 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.935 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.944 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2831x1646 | |
00:00:35.944 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d40070 is ready | |
00:00:35.944 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d40070 | |
00:00:35.945 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b183bec0 committing with 6 instructions | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.947 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.947 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.947 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.947 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.947 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.948 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4054x576 | |
00:00:35.949 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1414x2976 | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.951 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.953 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2831x1646 | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.957 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.961 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.967 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.978 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2838x1639 | |
00:00:35.978 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b183bec0 is ready | |
00:00:35.978 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b183bec0 | |
00:00:35.979 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc1940 committing with 6 instructions | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.979 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.981 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.981 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.981 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4066x588 | |
00:00:35.981 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:35.981 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:35.981 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.981 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.981 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.981 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.981 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.982 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1402x2976 | |
00:00:35.983 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.983 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.985 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.985 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.985 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.985 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.985 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.987 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.987 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.987 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2838x1639 | |
00:00:35.991 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.991 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.991 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.991 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.991 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.993 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.993 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:35.997 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:35.997 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:35.997 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:35.997 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:35.997 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:35.999 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:35.999 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.003 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.003 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.003 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.003 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.003 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.011 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2846x1631 | |
00:00:36.011 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc1940 is ready | |
00:00:36.011 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc1940 | |
00:00:36.012 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b199be00 committing with 6 instructions | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.013 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.013 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.013 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.013 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4082x602 | |
00:00:36.013 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.013 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.014 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1386x2976 | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.019 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.020 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2846x1631 | |
00:00:36.025 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.025 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.029 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.029 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.029 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.029 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.029 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.035 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.035 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.044 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2857x1621 | |
00:00:36.045 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b199be00 is ready | |
00:00:36.045 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b199be00 | |
00:00:36.046 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b177ee60 committing with 6 instructions | |
00:00:36.047 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.047 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.047 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.047 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.047 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.047 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.047 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.048 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4088x612 | |
00:00:36.048 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.048 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.049 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1380x2976 | |
00:00:36.051 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.051 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.053 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2857x1621 | |
00:00:36.061 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.061 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.061 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.061 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.061 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.077 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2862x1614 | |
00:00:36.077 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b177ee60 is ready | |
00:00:36.077 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b177ee60 | |
00:00:36.078 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cfa730 committing with 6 instructions | |
00:00:36.080 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.080 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.080 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4092x614 | |
00:00:36.080 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.080 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.081 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1376x2976 | |
00:00:36.087 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2862x1614 | |
00:00:36.110 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2864x1613 | |
00:00:36.110 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cfa730 is ready | |
00:00:36.110 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cfa730 | |
00:00:36.111 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.111 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.111 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cfa730 committing with 4 instructions | |
00:00:36.113 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.113 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.114 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4092x612 | |
00:00:36.115 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1376x2976 | |
00:00:36.117 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.117 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.120 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2864x1613 | |
00:00:36.121 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.121 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.123 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.123 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.125 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.125 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.125 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.125 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.125 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.127 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.127 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.129 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.129 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.131 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.133 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.133 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.135 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.135 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.144 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2864x1614 | |
00:00:36.144 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cfa730 is ready | |
00:00:36.144 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cfa730 | |
00:00:36.145 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d393c0 committing with 6 instructions | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.145 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.146 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.146 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.146 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4096x594 | |
00:00:36.146 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.146 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.147 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.147 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.148 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1372x2976 | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.149 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.151 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.151 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.153 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2864x1614 | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.153 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.155 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.157 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.157 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.159 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.161 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.161 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.163 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.165 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.167 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.167 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.169 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.177 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2867x1627 | |
00:00:36.177 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d393c0 is ready | |
00:00:36.177 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d393c0 | |
00:00:36.178 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195d200 committing with 6 instructions | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.178 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.180 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.180 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.180 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.180 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.180 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4122x544 | |
00:00:36.180 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.180 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.181 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1346x2976 | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.181 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.183 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.183 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.185 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.187 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.187 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.187 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2867x1627 | |
00:00:36.189 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.189 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.191 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.193 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.193 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.195 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.197 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.197 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.199 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.199 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.201 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.211 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2885x1662 | |
00:00:36.211 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b195d200 is ready | |
00:00:36.211 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195d200 | |
00:00:36.212 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ccd770 committing with 6 instructions | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.213 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.214 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.214 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.214 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.214 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.214 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4140x496 | |
00:00:36.214 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.214 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.215 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.215 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1328x2976 | |
00:00:36.217 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.217 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.219 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.219 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.220 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2885x1662 | |
00:00:36.221 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.221 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.221 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.221 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.221 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.223 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.223 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.225 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.227 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.227 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.229 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.229 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.231 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.235 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.235 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.244 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2898x1695 | |
00:00:36.244 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ccd770 is ready | |
00:00:36.244 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ccd770 | |
00:00:36.245 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1999240 committing with 6 instructions | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.246 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.247 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.247 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.247 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.247 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4152x458 | |
00:00:36.247 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.247 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.248 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1316x2976 | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.251 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.253 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2898x1695 | |
00:00:36.253 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.253 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.255 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.255 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.255 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.255 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.255 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.257 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.257 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.259 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.263 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.267 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.269 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.278 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2906x1722 | |
00:00:36.278 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1999240 is ready | |
00:00:36.278 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1999240 | |
00:00:36.280 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195d200 committing with 6 instructions | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.281 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.282 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.282 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.282 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.282 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.282 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4172x430 | |
00:00:36.282 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1296x2976 | |
00:00:36.283 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.283 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.283 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.283 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.283 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.285 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.287 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2906x1722 | |
00:00:36.287 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.287 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.289 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.289 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.289 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.289 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.289 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.291 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.295 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.297 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.297 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.297 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.297 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.297 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.299 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.299 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.301 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.301 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.301 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.301 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.301 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.311 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2920x1742 | |
00:00:36.311 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b195d200 is ready | |
00:00:36.311 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b195d200 | |
00:00:36.312 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ccd770 committing with 6 instructions | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.312 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.314 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.314 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.315 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.315 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.315 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.315 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.315 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4196x412 | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.315 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.315 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1272x2976 | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.317 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.320 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2920x1742 | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.321 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.323 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.323 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.323 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.323 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.323 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.325 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.327 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.327 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.327 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.327 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.327 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.329 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.331 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.331 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.331 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.331 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.331 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.333 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.335 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.335 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.335 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.335 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.335 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.346 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2937x1754 | |
00:00:36.346 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ccd770 is ready | |
00:00:36.346 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ccd770 | |
00:00:36.347 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1999240 committing with 6 instructions | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.347 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.349 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.349 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.349 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4228x392 | |
00:00:36.349 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.349 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.349 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.349 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.349 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.349 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.349 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1240x2976 | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.351 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.353 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.353 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.353 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.353 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.353 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.353 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2937x1754 | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.355 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.357 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.357 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.357 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.357 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.357 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.359 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.361 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.361 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.361 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.361 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.361 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.363 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.365 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.365 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.365 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.365 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.365 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.367 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.367 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.367 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.367 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.367 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.369 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.378 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2960x1768 | |
00:00:36.378 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1999240 is ready | |
00:00:36.378 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1999240 | |
00:00:36.379 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.379 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.381 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.381 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.381 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.381 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.381 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.381 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.381 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.381 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4278x372 | |
00:00:36.382 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.382 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.382 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1190x2976 | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.383 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.385 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.385 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.385 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.385 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.385 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.387 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2960x1768 | |
00:00:36.387 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.387 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.387 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.387 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.387 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.389 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.391 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.391 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.391 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.391 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.391 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.393 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.393 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.393 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.393 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.393 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.395 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.397 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.397 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.397 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.397 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.397 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.399 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.399 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.399 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.399 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.399 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.401 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.411 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2995x1782 | |
00:00:36.411 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:36.411 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:36.412 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ef0f80 committing with 6 instructions | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.412 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.414 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.414 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.414 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.415 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.415 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.415 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4324x356 | |
00:00:36.415 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.415 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.415 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1144x2976 | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.415 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.417 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.417 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.419 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.419 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.419 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.419 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.419 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.420 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 2995x1782 | |
00:00:36.421 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.421 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.421 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.421 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.421 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.423 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.423 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.423 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.423 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.423 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.425 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.425 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.425 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.425 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.425 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.427 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.427 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.427 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.427 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.427 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.429 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.431 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.431 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.431 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.431 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.431 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.433 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.433 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.433 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.433 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.433 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.435 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.435 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.435 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.435 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.435 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.447 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3027x1793 | |
00:00:36.447 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ef0f80 is ready | |
00:00:36.447 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ef0f80 | |
00:00:36.448 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1936b30 committing with 6 instructions | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.448 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.449 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.449 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.449 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.449 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.449 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.451 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.451 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.451 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4364x350 | |
00:00:36.451 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.451 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.451 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1104x2976 | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.451 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.453 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.453 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.453 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.453 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.453 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.454 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3027x1793 | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.455 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.457 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.457 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.457 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.457 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.457 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.459 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.459 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.459 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.459 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.459 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.461 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.461 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.461 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.461 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.463 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.463 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.463 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.463 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.463 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.465 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.465 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.465 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.465 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.465 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.467 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.467 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.467 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.467 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.467 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.469 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.479 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3055x1798 | |
00:00:36.479 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1936b30 is ready | |
00:00:36.479 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1936b30 | |
00:00:36.480 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cf9de0 committing with 6 instructions | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.480 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.482 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.482 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.482 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.482 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.482 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.482 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.482 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.482 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4404x342 | |
00:00:36.482 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.482 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.483 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.483 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.483 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.483 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.483 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.483 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1064x2976 | |
00:00:36.485 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.485 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.485 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.485 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.485 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.487 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.488 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3055x1798 | |
00:00:36.489 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.489 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.489 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.489 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.489 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.491 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.491 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.491 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.491 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.491 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.493 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.493 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.493 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.493 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.493 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.495 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.495 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.495 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.495 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.495 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.497 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.497 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.497 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.497 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.497 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.499 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.499 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.499 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.499 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.499 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.501 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.501 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.501 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.501 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.501 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.512 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3083x1803 | |
00:00:36.512 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cf9de0 is ready | |
00:00:36.512 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cf9de0 | |
00:00:36.514 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d393c0 committing with 6 instructions | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.514 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.515 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.515 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.515 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.515 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.515 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.515 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.515 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.516 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4448x338 | |
00:00:36.516 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.516 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.516 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 1020x2976 | |
00:00:36.517 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.517 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.517 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.517 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.517 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.519 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.519 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.519 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.519 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.519 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.520 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3083x1803 | |
00:00:36.521 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.521 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.521 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.521 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.521 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.523 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.523 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.523 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.523 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.523 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.525 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.525 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.525 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.525 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.525 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.527 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.527 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.527 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.527 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.527 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.529 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.529 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.529 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.529 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.529 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.531 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.531 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.531 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.531 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.531 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.533 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.533 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.533 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.533 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.533 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.535 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.535 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.535 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.535 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.535 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.546 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3114x1806 | |
00:00:36.546 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d393c0 is ready | |
00:00:36.546 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d393c0 | |
00:00:36.547 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1ccd770 committing with 6 instructions | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.547 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.549 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.549 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.550 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 974x2976 | |
00:00:36.550 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.550 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.550 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4494x336 | |
00:00:36.550 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.550 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.550 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.550 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.550 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.553 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3114x1806 | |
00:00:36.553 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.553 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.553 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.553 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.553 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.555 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.555 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.555 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.555 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.555 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.559 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.559 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.559 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.559 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.559 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.561 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.565 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.565 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.565 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.565 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.565 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.567 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.567 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.567 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.567 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.567 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.569 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.569 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.569 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.569 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.579 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3146x1807 | |
00:00:36.579 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1ccd770 is ready | |
00:00:36.579 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1ccd770 | |
00:00:36.580 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b177ee60 committing with 6 instructions | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.582 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.583 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.583 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.583 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4522x330 | |
00:00:36.583 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.583 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.583 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 946x2976 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.583 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.585 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.585 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.585 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.585 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.585 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.587 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3146x1807 | |
00:00:36.588 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.588 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.588 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.588 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.588 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.589 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.589 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.591 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.591 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.591 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.591 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.591 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.593 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.595 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.595 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.595 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.595 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.597 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.597 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.597 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.597 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.597 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.599 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.601 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.601 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.601 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.601 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.601 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.612 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3165x1812 | |
00:00:36.612 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b177ee60 is ready | |
00:00:36.612 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b177ee60 | |
00:00:36.613 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1cc69f0 committing with 6 instructions | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.613 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.615 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.615 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.615 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.615 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.615 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.616 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.616 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.616 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 916x2976 | |
00:00:36.616 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.616 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.616 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4552x320 | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.617 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.619 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.619 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.619 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.619 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.619 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.620 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3165x1812 | |
00:00:36.621 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.621 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.621 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.621 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.621 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.623 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.625 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.627 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.627 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.627 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.627 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.627 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.629 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.631 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.631 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.631 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.631 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.631 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.633 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.635 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.646 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3186x1819 | |
00:00:36.646 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1cc69f0 is ready | |
00:00:36.646 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1cc69f0 | |
00:00:36.647 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1992d50 committing with 6 instructions | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.647 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.650 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.650 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.650 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.651 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4596x296 | |
00:00:36.651 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.651 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.651 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 872x2976 | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.651 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.654 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3186x1819 | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.654 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.655 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.657 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.659 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.661 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.663 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.665 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.667 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.669 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.679 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3217x1835 | |
00:00:36.679 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1992d50 is ready | |
00:00:36.679 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1992d50 | |
00:00:36.680 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b1d393c0 committing with 6 instructions | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.680 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.682 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.682 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.682 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.682 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 810x2976 | |
00:00:36.682 [DEBUG] [wlr] [types/wlr_text_input_v3.c:185] Text input commit received without focus | |
00:00:36.682 [INFO] [sway/input/text_input.c:156] Inactive text input tried to commit an update | |
00:00:36.682 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 4658x246 | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.683 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.685 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.687 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.687 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3217x1835 | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.689 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.691 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.693 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.695 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.697 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.699 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.701 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.712 [DEBUG] [wlr] [render/gles2/renderer.c:160] Created GL FBO for buffer 3261x1870 | |
00:00:36.712 [DEBUG] [sway/desktop/transaction.c:879] Transaction 0x58c8b1d393c0 is ready | |
00:00:36.712 [DEBUG] [sway/desktop/transaction.c:689] Applying transaction 0x58c8b1d393c0 | |
00:00:36.713 [DEBUG] [sway/desktop/transaction.c:793] Transaction 0x58c8b195dfb0 committing with 6 instructions | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:297] Arranging workspace '1' at 1280.000000, 25.000000 | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092120 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092020 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc091f50 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:156] Arranging 0x7ffdcc092120 vertically | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:77] Arranging 0x7ffdcc092050 horizontally | |
00:00:36.713 [DEBUG] [sway/tree/arrange.c:263] Usable area for ws: 2742x1517@0,25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment