Skip to content

Instantly share code, notes, and snippets.

@tim-rex
Created July 3, 2025 11:40
Show Gist options
  • Save tim-rex/bc7d75e0e8dc8db19a7eb59586622de5 to your computer and use it in GitHub Desktop.
Save tim-rex/bc7d75e0e8dc8db19a7eb59586622de5 to your computer and use it in GitHub Desktop.
Sway v1.11 seg fault + arch + amdgpu
# 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 wezterm
# 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 dmenu_path | wmenu | xargs swaymsg exec --
### Output configuration
#
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.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
# Nested session
#output Unknown resolution 1920x1080
#output WL-1 resolution 1920x1080
# For running unrooted within another desktop environment
#output WL-1 resolution 2560x1440
# Left display
#output HDMI-A-1 transform 90
output "Dell Inc. DELL U2722D H0T7YG3" transform 90
# Main display
#output DP-3 transform 0
output "BNQ BenQ PD3200U 81H04263019" transform 0
# Right display
#output DP-2 transform 270
output "Dell Inc. DELL U2722D JZS7YG3" transform 270
output "Dell Inc. DELL U2722D H0T7YG3" pos -1440 -500
output "BNQ BenQ PD3200U 81H04263019" pos 0 0
output "Dell Inc. DELL U2722D JZS7YG3" pos 3840 -400
### 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.
### 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.
#
# Layout stuff:
#
# You can "split" the current object of your focus with
# $mod+b or $mod+v, for horizontal and vertical splits
# respectively.
bindsym $mod+b splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# Move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
# When the status_command prints a new line to stdout, swaybar updates.
# The default just shows the current date and time.
status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
colors {
statusline #ffffff
background #323232
inactive_workspace #32323200 #32323200 #5c5c5c
}
}
include /etc/sway/config.d/*
GNU gdb (GDB) 16.3
Copyright (C) 2024 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/bin/sway...
This GDB supports auto-downloading debuginfo from the following URLs:
<https://debuginfod.archlinux.org>
Enable debuginfod for this session? (y or [n]) y
Debuginfod has been enabled.
To make this setting permanent, add 'set debuginfod enabled on' to .gdbinit.
Reading symbols from /root/.cache/debuginfod_client/0fd552c6f382f24529f1e1340308d45d9d735a43/debuginfo...
warning: Can't open file /dev/shm/sway-85e-25d9c1b6 (deleted) during file-backed mapping note processing
warning: Can't open file /dev/shm/sway-85e-25e430ce (deleted) during file-backed mapping note processing
warning: Can't open file /memfd:wayland-cursor-rs (deleted) during file-backed mapping note processing
warning: Can't open file /memfd:smithay-client-toolkit (deleted) during file-backed mapping note processing
warning: Can't open file /memfd:wayland-cursor (deleted) during file-backed mapping note processing
warning: Can't open file /dev/shm/sway-85e-25e1c3fb (deleted) during file-backed mapping note processing
[New LWP 2098]
[New LWP 2104]
[New LWP 2106]
[New LWP 2114]
[New LWP 2121]
[New LWP 2102]
[New LWP 2107]
[New LWP 2111]
[New LWP 2105]
[New LWP 2110]
[New LWP 2103]
[New LWP 2109]
[New LWP 2112]
[New LWP 2115]
[New LWP 2113]
[New LWP 2116]
[New LWP 2108]
[New LWP 2118]
[New LWP 2117]
[New LWP 2120]
[New LWP 2119]
Downloading 11.09 K separate debug info for /usr/lib/libpthread.so.0...
Downloading 5.82 M separate debug info for /usr/lib/libcairo.so.2...
Downloading 243.42 K separate debug info for /usr/lib/libdrm.so.2...
Downloading 188.53 K separate debug info for /usr/lib/libjson-c.so.5...
Downloading 126.34 K separate debug info for /usr/lib/libevdev.so.2...
Downloading 1.50 M separate debug info for /usr/lib/libinput.so.10...
Downloading 1.49 M separate debug info for /usr/lib/libudev.so.1...
Downloading 3.07 M separate debug info for /usr/lib/libm.so.6...
Downloading 1.23 M separate debug info for /usr/lib/libpango-1.0.so.0...
Downloading 1.73 M separate debug info for /usr/lib/libgobject-2.0.so.0...
Downloading 4.67 M separate debug info for /usr/lib/libglib-2.0.so.0...
Downloading 1.68 M separate debug info for /usr/lib/libpcre2-8.so.0...
Downloading 5.10 M separate debug info for /usr/lib/libpixman-1.so.0...
Downloading 210.66 K separate debug info for /usr/lib/libwayland-server.so.0...
Downloading 881.35 K separate debug info for /usr/lib/libxkbcommon.so.0...
Downloading 500.05 K separate debug info for /usr/lib/libxcb.so.1...
Downloading 41.77 K separate debug info for /usr/lib/libxcb-icccm.so.4...
Downloading 179.68 K separate debug info for /usr/lib/libpangocairo-1.0.so.0...
Downloading 194.53 K separate debug info for /usr/lib/libz.so.1...
Downloading 760.59 K separate debug info for /usr/lib/libpng16.so.16...
Downloading 2.21 M separate debug info for /usr/lib/libfontconfig.so.1...
Downloading 3.34 M separate debug info for /usr/lib/libfreetype.so.6...
Downloading 10.91 M separate debug info for /usr/lib/libX11.so.6...
Downloading 532.13 K separate debug info for /usr/lib/libXext.so.6...
Downloading 403.49 K separate debug info for /usr/lib/libXrender.so.1...
Downloading 131.02 K separate debug info for /usr/lib/libxcb-render.so.0...
Downloading 24.12 K separate debug info for /usr/lib/libxcb-shm.so.0...
Downloading 1.10 M separate debug info for /lib64/ld-linux-x86-64.so.2...
Downloading 57.77 K separate debug info for /usr/lib/libmtdev.so.1...
Downloading 193.02 K separate debug info for /usr/lib/libwacom.so.9...
Downloading 98.30 K separate debug info for /usr/lib/libcap.so.2...
Downloading 10.46 M separate debug info for /usr/lib/libgio-2.0.so.0...
Downloading 95.42 K separate debug info for /usr/lib/libfribidi.so.0...
Downloading 91.45 K separate debug info for /usr/lib/libthai.so.0...
Downloading 37.71 M separate debug info for /usr/lib/libharfbuzz.so.0...
Downloading 121.48 K separate debug info for /usr/lib/libffi.so.8...
Downloading 251.74 K separate debug info for /usr/lib/libEGL.so.1...
Downloading 97.42 K separate debug info for /usr/lib/libgbm.so.1...
Downloading 37.36 K separate debug info for /usr/lib/libGLESv2.so.2...
Downloading 3.40 M separate debug info for /usr/lib/libvulkan.so.1...
Downloading 1.22 M separate debug info for /usr/lib/liblcms2.so.2...
Downloading 105.88 K separate debug info for /usr/lib/libseat.so.1...
Downloading 279.91 K separate debug info for /usr/lib/libdisplay-info.so.2...
Downloading 76.95 K separate debug info for /usr/lib/libliftoff.so.0...
Downloading 39.01 K separate debug info for /usr/lib/libxcb-dri3.so.0...
Downloading 25.20 K separate debug info for /usr/lib/libxcb-present.so.0...
Downloading 30.50 K separate debug info for /usr/lib/libxcb-render-util.so.0...
Downloading 72.90 K separate debug info for /usr/lib/libxcb-xfixes.so.0...
Downloading 390.67 K separate debug info for /usr/lib/libxcb-xinput.so.0...
Downloading 146.31 K separate debug info for /usr/lib/libwayland-client.so.0...
Downloading 21.20 K separate debug info for /usr/lib/libxcb-composite.so.0...
Downloading 106.80 K separate debug info for /usr/lib/libxcb-ewmh.so.2...
Downloading 29.04 K separate debug info for /usr/lib/libxcb-res.so.0...
Downloading 23.00 K separate debug info for /usr/lib/libxcb-errors.so.0...
Downloading 29.59 K separate debug info for /usr/lib/libXau.so.6...
Downloading 52.94 K separate debug info for /usr/lib/libXdmcp.so.6...
Downloading 354.26 K separate debug info for /usr/lib/libpangoft2-1.0.so.0...
Downloading 370.80 K separate debug info for /usr/lib/libexpat.so.1...
Downloading 156.17 K separate debug info for /usr/lib/libbz2.so.1.0...
Downloading 214.80 K separate debug info for /usr/lib/libbrotlidec.so.1...
Downloading 116.81 K separate debug info for /usr/lib/libgudev-1.0.so.0...
Downloading 267.86 K separate debug info for /usr/lib/libgmodule-2.0.so.0...
Downloading 1.10 M separate debug info for /usr/lib/libmount.so.1...
Downloading 92.78 K separate debug info for /usr/lib/libdatrie.so.1...
Downloading 1.34 M separate debug info for /usr/lib/libgraphite2.so.3...
Downloading 369.80 K separate debug info for /usr/lib/libGLdispatch.so.0...
Downloading 4.56 M separate debug info for /usr/lib/libsystemd.so.0...
Downloading 22.55 K separate debug info for /usr/lib/libbrotlicommon.so.1...
Downloading 1.01 M separate debug info for /usr/lib/libblkid.so.1...
Downloading 15.75 K separate debug info for /usr/lib/librt.so.1...
Downloading 10.33 K separate debug info for /usr/lib/libdl.so.2...
Downloading 272.02 K separate debug info for /usr/lib/libnvidia-egl-wayland.so.1...
Downloading 71.71 K separate debug info for /usr/lib/libnvidia-egl-gbm.so.1...
Downloading 259.46 K separate debug info for /usr/lib/libnvidia-egl-xcb.so.1...
Downloading 292.95 K separate debug info for /usr/lib/libnvidia-egl-xlib.so.1...
Downloading 34.59 K separate debug info for /usr/lib/libX11-xcb.so.1...
Downloading 1.02 M separate debug info for /usr/lib/libEGL_mesa.so.0...
Downloading 38.16 K separate debug info for /usr/lib/libxcb-dri2.so.0...
Downloading 159.27 K separate debug info for /usr/lib/libxcb-randr.so.0...
Downloading 426.62 M separate debug info for /usr/lib/libLLVM.so.20.1...
Downloading 5.77 M separate debug info for /usr/lib/libzstd.so.1...
Downloading 36.17 M separate debug info for /usr/lib/libSPIRV-Tools.so...
Downloading 137.61 K separate debug info for /usr/lib/libsensors.so.5...
Downloading 57.62 K separate debug info for /usr/lib/libxcb-sync.so.1...
Downloading 11.27 K separate debug info for /usr/lib/libxshmfence.so.1...
Downloading 922.55 K separate debug info for /usr/lib/libelf.so.1...
Downloading 152.05 K separate debug info for /usr/lib/libdrm_amdgpu.so.1...
Downloading 326.08 K separate debug info for /usr/lib/libdrm_intel.so.1...
Downloading 610.80 K separate debug info for /usr/lib/libedit.so.0...
Downloading 3.53 M separate debug info for /usr/lib/libxml2.so.16...
Downloading 114.30 K separate debug info for /usr/lib/libpciaccess.so.0...
Downloading 1.70 M separate debug info for /usr/lib/libncursesw.so.6...
Downloading 889.26 K separate debug info for /usr/lib/liblzma.so.5...
Downloading 10.53 M separate debug info for /usr/lib/libicuuc.so.76...
Downloading 30.38 M separate debug info for /usr/lib/libicudata.so.76...
Downloading 105.52 K separate debug info for /usr/lib/gbm/dri_gbm.so...
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
Core was generated by `sway -d -V'.
Program terminated with signal SIGSEGV, Segmentation fault.
Downloading 48.00 K source file /usr/src/debug/mesa/build/../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c...
#0 pushbuf_dump () at ../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c:1122
1122 bo = (void *)(unsigned long)kref->user_priv;
[Current thread is 1 (Thread 0x7fc245ac7e40 (LWP 2098))]
Function(s) ^std::(move|forward|as_const|(__)?addressof) will be skipped when stepping.
Function(s) ^std::(shared|unique)_ptr<.*>::(get|operator) will be skipped when stepping.
Function(s) ^std::(basic_string|vector|array|deque|(forward_)?list|(unordered_|flat_)?(multi)?(map|set)|span)<.*>::(c?r?(begin|end)|front|back|data|size|empty) will be skipped when stepping.
Function(s) ^std::(basic_string|vector|array|deque|span)<.*>::operator.] will be skipped when stepping.
(gdb)
(gdb) bt full
#0 pushbuf_dump () at ../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c:1122
No locals.
#1 0x00007fc23d11ff8f in pushbuf_submit () at ../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c:1195
No locals.
#2 pushbuf_flush () at ../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c:1233
No locals.
#3 0x00007fc23d120b2b in pushbuf_refn () at ../mesa-25.1.4/src/gallium/winsys/nouveau/drm/nouveau.c:1486
No locals.
#4 0x00007fc23d6f61e6 in PUSH_REFN () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nouveau_winsys.h:80
No locals.
#5 PUSH_REF1 () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nouveau_winsys.h:89
No locals.
#6 nvc0_cb_bo_push () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c:601
No locals.
#7 0x00007fc23d761628 in nvc0_constbufs_validate () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c:549
No locals.
#8 0x00007fc23d7667f1 in nvc0_state_validate () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c:933
No locals.
#9 0x00007fc23d7669cf in nvc0_state_validate_3d () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c:951
No locals.
#10 0x00007fc23d768938 in nvc0_draw_vbo () at ../mesa-25.1.4/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c:1160
No locals.
#11 0x00007fc23c86f387 in _mesa_draw_arrays () at ../mesa-25.1.4/src/mesa/main/draw.c:1178
No locals.
#12 0x00007fc2468ceaab in render (box=box@entry=0x7fffc0e9aab0, clip=<optimized out>, attrib=0) at ../wlroots0.19/render/gles2/pass.c:119
batch = 1
batch_end = <optimized out>
vert_index = <optimized out>
verts = {0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, -7.30010223, 4.59163468e-41, 21630.9375, 4.58308676e-41, -7.30019379, 4.59163468e-41, 15007.7617, 0, 0, 0, 0, 0, 21630.9062, 4.58308676e-41, 0, 0, 2.80259693e-45,
4.59163468e-41, 15007.7617, 4.58308676e-41, -7.30023956, 4.59163468e-41, -7.30024767, 4.59163468e-41, -7.30219269, 4.59163468e-41, 0, 0, 2.80259693e-45, 0, 0, 0, -9.19496271e-27, 3.08621974e-41, 1.35187435e-08,
4.58308676e-41, -7.30025482, 4.59163468e-41, 15007.7617, 4.58308676e-41, -7.30027771, 4.59163468e-41, -7.30028152, 4.59163468e-41, -7.30223083, 4.59163468e-41, 715948032, 4.08644324e+35, 2.80259693e-45,
4.59163468e-41, 715948032, 4.08644324e+35, -7.30225372, 4.59163468e-41, -2.88727529e-26, 3.08621974e-41, -7.30226135, 4.59163468e-41, 0.0144614698, 4.58308676e-41, -7.30226135, 4.59163468e-41, 2.24207754e-44,
6.72623263e-44, -7.30226898, 4.59163468e-41, -7.30217743, 4.59163468e-41, 2.63808959e+23, 4.59880443e+24, 0, 0, -7.30032349, 4.59163468e-41, 15007.7617, 4.58308676e-41, -7.30034637, 4.59163468e-41, -7.30035305,
4.59163468e-41, -7.3022995, 4.59163468e-41, 0, 0, 2.80259693e-45, 4.59163468e-41, -1.08001714e-26, 3.08621974e-41, -7.30232239, 4.59163468e-41, 0.0144614698, 4.58308676e-41, 2.80259693e-45, 3.08621974e-41,
715948032, 4.08644324e+35, -7.30233002, 4.59163468e-41, -2.51401096e-26, 3.08621974e-41, 0, 0, 3539.69531, 4.58308676e-41, 0, 0, 0, 0, -7.30039215, 4.59163468e-41, 15007.7617, 4.58308676e-41, -7.30041504,
4.59163468e-41, -7.30042171, 4.59163468e-41, -7.30236816, 4.59163468e-41, 0, 0, 2.80259693e-45, 4.59163468e-41, -2.51401096e-26, 3.08621974e-41, -7.30239105, 4.59163468e-41, 3489.12427, 4.58308676e-41,
-7.30239105, 4.59163468e-41, 2.24207754e-44, 6.72623263e-44, -7.30239868, 4.59163468e-41, -7.30230713, 4.59163468e-41, 247887440, 229.419449, 7.1557753e+22, 4.1767102e-41, -7.30045319, 4.59163468e-41, 15007.7617,
4.58308676e-41, -7.30047607, 4.59163468e-41, -7.30048275, 4.59163468e-41, -7.3024292, 4.59163468e-41, 0, 0, 2.80259693e-45, 0, 715948032, 4.08644324e+35, -5.941937e-26, 3.08621974e-41, -2.51401096e-26,
3.08621974e-41, -7.30245972, 4.59163468e-41, 3489.12427, 4.58308676e-41, -7.30049896, 4.59163468e-41, 2.24207754e-44, 6.72623263e-44, -7.30246735, 4.59163468e-41, -7.30237579, 4.59163468e-41, 247887440,
229.419449, 7.1557753e+22, 4.1767102e-41, -7.30052185, 4.59163468e-41, 15007.7617, 4.58308676e-41, -7.30054474, 4.59163468e-41, -7.30055285, 4.59163468e-41, -7.30249786, 4.59163468e-41, 715948032,
4.08644324e+35...}
i = <optimized out>
region = {extents = {x1 = 2, y1 = 44, x2 = 1918, y2 = 1089}, data = 0x0}
rects_len = 1
rects = 0x7fffc0e99a00
#13 0x00007fc2468de3d8 in render_pass_add_texture (wlr_pass=<optimized out>, options=0x7fffc0e9ad70) at ../wlroots0.19/render/gles2/pass.c:250
pass = <optimized out>
renderer = 0x560895101ac0
texture = 0x560895937dc0
shader = 0x560895101bc0
dst_box = {x = 2, y = 44, width = 1916, height = 1045}
src_fbox = {x = 0, y = 0, width = 1, height = 1}
alpha = <optimized out>
__PRETTY_FUNCTION__ = "render_pass_add_texture"
__func__ = "render_pass_add_texture"
#14 0x00007fc246922368 in scene_entry_render (entry=0x560895925af8, data=0x7fffc0e9ad20) at ../wlroots0.19/types/scene/wlr_scene.c:1438
texture = <optimized out>
scene_rect = <optimized out>
scene_buffer = 0x560895929830
transform = <optimized out>
sample_event = {output = 0x5608953a3be0, direct_scanout = false}
node = <optimized out>
render_region = {extents = {x1 = 2, y1 = 44, x2 = 1918, y2 = 1089}, data = 0x0}
x = <optimized out>
y = <optimized out>
dst_box = {x = 2, y = 44, width = 1916, height = 1045}
opaque = {extents = {x1 = 2, y1 = 44, x2 = 2, y2 = 44}, data = 0x7fc246a8fdd0 <pixman_region32_empty_data_>}
__PRETTY_FUNCTION__ = <optimized out>
#15 wlr_scene_output_build_state (scene_output=<optimized out>, state=state@entry=0x7fffc0e9aeb0, options=<optimized out>, options@entry=0x7fffc0e9ae90) at ../wlroots0.19/types/scene/wlr_scene.c:2294
entry = 0x560895925af8
buffer = <optimized out>
options = <optimized out>
i = <optimized out>
default_options = {timer = 0x0, color_transform = 0x0, swapchain = 0x0}
timer = <optimized out>
start_time = {tv_sec = 94594869160464, tv_nsec = 94594864370784}
output = 0x5608957e2360
debug_damage = WLR_SCENE_DEBUG_DAMAGE_NONE
render_data = {transform = WL_OUTPUT_TRANSFORM_NORMAL, scale = 1, logical = {x = 0, y = 0, width = 3840, height = 2160}, trans_width = 3840, trans_height = 2160, output = 0x5608953a3be0,
render_pass = 0x560895944840, damage = {extents = {x1 = 2, y1 = 44, x2 = 3838, y2 = 2158}, data = 0x56089590c6b0}}
resolution_width = <optimized out>
resolution_height = <optimized out>
list_con = {box = {x = 0, y = 0, width = 3840, height = 2160}, render_list = 0x5608953a3ce0, calculate_visibility = true, highlight_transparent_region = false, fractional_scale = false}
list_data = <optimized out>
list_len = <optimized out>
now = {tv_sec = 94594869160576, tv_nsec = 4575657223917940912}
scanout_result = <optimized out>
scanout = false
swapchain = <optimized out>
buffer = <optimized out>
render_pass = 0x560895944840
background = {extents = {x1 = 2, y1 = 44, x2 = 2, y2 = 44}, data = 0x7fc246a8fdd0 <pixman_region32_empty_data_>}
__PRETTY_FUNCTION__ = "wlr_scene_output_build_state"
#16 0x00005608775b5fa0 in output_repaint_timer_handler (data=data@entry=0x56089549d460) at ../sway/sway/desktop/output.c:284
output = <optimized out>
opts = {timer = 0x0, color_transform = 0x0, swapchain = 0x0}
scene_output = <optimized out>
pending = {committed = 2, allow_reconfiguration = false, damage = {extents = {x1 = 2, y1 = 44, x2 = 3838, y2 = 2158}, data = 0x5608959437a0}, enabled = false, scale = 0, transform = WL_OUTPUT_TRANSFORM_NORMAL,
adaptive_sync_enabled = false, render_format = 0, subpixel = WL_OUTPUT_SUBPIXEL_UNKNOWN, buffer = 0x0, buffer_src_box = {x = 0, y = 0, width = 0, height = 0}, buffer_dst_box = {x = 0, y = 0, width = 0,
height = 0}, tearing_page_flip = false, mode_type = WLR_OUTPUT_STATE_MODE_FIXED, mode = 0x0, custom_mode = {width = 0, height = 0, refresh = 0}, gamma_lut = 0x0, gamma_lut_size = 0, layers = 0x0,
layers_len = 0, wait_timeline = 0x0, wait_point = 0, signal_timeline = 0x0, signal_point = 0}
#17 0x00005608775b615b in output_repaint_timer_handler (data=0x56089549d460) at ../sway/sway/desktop/output.c:266
output = 0x56089549d460
opts = <optimized out>
scene_output = <optimized out>
pending = <optimized out>
#18 handle_frame (listener=0x56089549d598, user_data=<optimized out>) at ../sway/sway/desktop/output.c:356
output = 0x56089549d460
msec_until_refresh = <optimized out>
delay = <optimized out>
data = {when = {tv_sec = 134, tv_nsec = 474928790}, msec_until_refresh = 0, output = 0x7fc2468ce926 <slot_handle_release+22>}
#19 0x00007fc2469e851e in wl_signal_emit_mutable (signal=<optimized out>, data=0x5608957e2360) at ../wayland-1.23.1/src/wayland-server.c:2314
pos = 0x56089549d598
l = 0x56089549d598
cursor = {link = {prev = 0x56089549d598, next = 0x7fffc0e9b010}, notify = 0x7fc2469e5310 <handle_noop>}
end = {link = {prev = 0x7fffc0e9b030, next = 0x5608957e2408}, notify = 0x7fc2469e5310 <handle_noop>}
#20 0x00007fc2468fc071 in handle_page_flip (fd=<optimized out>, seq=7432, tv_sec=134, tv_usec=538167, crtc_id=<optimized out>, data=<optimized out>) at ../wlroots0.19/backend/drm/drm.c:2037
page_flip = <optimized out>
conn = 0x5608957e2360
present_flags = 7
drm = <optimized out>
plane = <optimized out>
layer = 0x5608942193e8
present_event = {output = 0x5608957e2360, commit_seq = 883, presented = true, when = {tv_sec = 134, tv_nsec = 538167000}, seq = 7432, refresh = 16667500, flags = 7}
#21 0x00007fc246f42fa0 in drmHandleEvent (fd=13, evctx=evctx@entry=0x7fffc0e9b580) at ../libdrm-2.4.125/xf86drmMode.c:1070
buffer = "\002\000\000\000 \000\000\000\020X\224\225\bV\000\000\206\000\000\00076\b\000\b\035\000\000?\000\000\000h\262\351\300\377\177\000\000\000\262*Nqg\235z\000\262\351\300\377\177\000\000@\262\351\300\377\177\000\000\020\263\351\300\377\177\000\000@\355\222F\302\177\000\000\000\000\000\000\000\000\000\000\377\377\377\377\000\000\000\000\000\262\351\300\377\177\000\000n\240\373E\302\177\000\000\020S\236F\302\177\000\000\001\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000 \b[w\bV\000\000p\264\351\300\377\177\000\000\000\262*Nqg\235z\025\000\000\000\000\000\000\000\200\235\222\225\bV\000\000@\262\351\300\377\177\000\000X\236\222\225\bV\000\000\200\235\222\225\bV", '\000' <repeats 11 times>...
len = 32
i = 0
e = 0x7fffc0e9b130
vblank = 0x7fffc0e9b130
seq = <optimized out>
user_data = <optimized out>
#22 0x00007fc2468f0fbc in handle_drm_event (fd=<optimized out>, mask=<optimized out>, data=0x560894219200) at ../wlroots0.19/backend/drm/drm.c:2049
drm = 0x560894219200
event = {version = 3, vblank_handler = 0x0, page_flip_handler = 0x0, page_flip_handler2 = 0x7fc2468fbd90 <handle_page_flip>, sequence_handler = 0x0}
#23 0x00007fc2469ea112 in wl_event_loop_dispatch (loop=0x5608941fbb00, timeout=<optimized out>, timeout@entry=-1) at ../wayland-1.23.1/src/event-loop.c:1105
ep = {{events = 1, data = {ptr = 0x560894206380, fd = -1809816704, u32 = 2485150592, u64 = 94594844877696}}, {events = 32706, data = {ptr = 0x2e, fd = 46, u32 = 46, u64 = 46}}, {events = 2507693008, data = {
ptr = 0x800005608, fd = 22024, u32 = 22024, u64 = 34359760392}}, {events = 0, data = {ptr = 0x7fffc0e9b6b0, fd = -1058425168, u32 = 3236542128, u64 = 140736429930160}}, {events = 2507693104, data = {
ptr = 0xffffffff00005608, fd = 22024, u32 = 22024, u64 = 18446744069414606344}}, {events = 4294967295, data = {ptr = 0x7fffc0e9b7d0, fd = -1058424880, u32 = 3236542416, u64 = 140736429930448}}, {
events = 1184786467, data = {ptr = 0x6666303000007fc2, fd = 32706, u32 = 32706, u64 = 7378638022209732546}}, {events = 811950897, data = {ptr = 0x802dc, fd = 525020, u32 = 525020, u64 = 525020}}, {
events = 3236542224, data = {ptr = 0x800007fff, fd = 32767, u32 = 32767, u64 = 34359771135}}, {events = 0, data = {ptr = 0x0, fd = 0, u32 = 0, u64 = 0}}, {events = 0, data = {ptr = 0x0, fd = 0, u32 = 0,
u64 = 0}}, {events = 0, data = {ptr = 0x0, fd = 0, u32 = 0, u64 = 0}}, {events = 0, data = {ptr = 0x0, fd = 0, u32 = 0, u64 = 0}}, {events = 0, data = {ptr = 0x0, fd = 0, u32 = 0, u64 = 0}}, {
events = 2002724472, data = {ptr = 0x95935edc00005608, fd = 22024, u32 = 22024, u64 = 10778062632213566984}}, {events = 22024, data = {ptr = 0x8, fd = 8, u32 = 8, u64 = 8}}, {events = 2509462528, data = {
ptr = 0x20800005608, fd = 22024, u32 = 22024, u64 = 2233383015944}}, {events = 0, data = {ptr = 0x14, fd = 20, u32 = 20, u64 = 20}}, {events = 1, data = {ptr = 0x8100000001, fd = 1, u32 = 1,
u64 = 554050781185}}, {events = 143, data = {ptr = 0x5608958536b0, fd = -1786431824, u32 = 2508535472, u64 = 94594868262576}}, {events = 3236542496, data = {ptr = 0x775f4c3700007fff, fd = 32767, u32 = 32767,
u64 = 8601677612407881727}}, {events = 22024, data = {ptr = 0xb, fd = 11, u32 = 11, u64 = 11}}, {events = 0, data = {ptr = 0x2800000000, fd = 0, u32 = 0, u64 = 171798691840}}, {events = 48, data = {
ptr = 0x7fffc0e9b830, fd = -1058424784, u32 = 3236542512, u64 = 140736429930544}}, {events = 3236542320, data = {ptr = 0x4e2ab20000007fff, fd = 32767, u32 = 32767, u64 = 5632509997050003455}}, {
events = 2057135985, data = {ptr = 0x3, fd = 3, u32 = 3, u64 = 3}}, {events = 2508447696, data = {ptr = 0x7760049400005608, fd = 22024, u32 = 22024, u64 = 8601880321979340296}}, {events = 22024, data = {
ptr = 0x226, fd = 550, u32 = 550, u64 = 550}}, {events = 2502545776, data = {ptr = 0x4e2ab20000005608, fd = 22024, u32 = 22024, u64 = 5632509997049992712}}, {events = 2057135985, data = {ptr = 0xa00201d70,
fd = 2104688, u32 = 2104688, u64 = 42951777648}}, {events = 2509406144, data = {ptr = 0x9420134800005608, fd = 22024, u32 = 22024, u64 = 10673552316826670600}}, {events = 22024, data = {ptr = 0x560894201368,
fd = -1809837208, u32 = 2485130088, u64 = 94594844857192}}}
source = <optimized out>
i = 0
count = <optimized out>
has_timers = <optimized out>
use_timeout = false
now = {tv_sec = 140736429930016, tv_nsec = 140472381800410}
end = <optimized out>
#24 0x00007fc2469ec1f7 in wl_display_run (display=0x560894201320) at ../wayland-1.23.1/src/wayland-server.c:1530
No locals.
#25 0x00005608775a10a3 in server_run (server=<optimized out>) at ../sway/sway/server.c:552
No locals.
#26 main (argc=<optimized out>, argv=<optimized out>) at ../sway/sway/main.c:395
config_path = 0x0
c = <optimized out>
validate = false
debug = true
verbose = true
(gdb) quit
00:00:00.000 [INFO] [sway/main.c:321] Sway version 1.11
00:00:00.000 [INFO] [sway/main.c:322] wlroots version 0.19.0
00:00:00.001 [INFO] [sway/main.c:78] Linux archon 6.15.4-arch2-1 #1 SMP PREEMPT_DYNAMIC Fri, 27 Jun 2025 16:35:07 +0000 x86_64 GNU/Linux
00:00:00.001 [INFO] [sway/main.c:94] Contents of /etc/os-release:
00:00:00.001 [INFO] [sway/main.c:78] NAME="Arch Linux"
00:00:00.001 [INFO] [sway/main.c:78] PRETTY_NAME="Arch Linux"
00:00:00.001 [INFO] [sway/main.c:78] ID=arch
00:00:00.001 [INFO] [sway/main.c:78] BUILD_ID=rolling
00:00:00.001 [INFO] [sway/main.c:78] ANSI_COLOR="38;2;23;147;209"
00:00:00.001 [INFO] [sway/main.c:78] HOME_URL="https://archlinux.org/"
00:00:00.001 [INFO] [sway/main.c:78] DOCUMENTATION_URL="https://wiki.archlinux.org/"
00:00:00.001 [INFO] [sway/main.c:78] SUPPORT_URL="https://bbs.archlinux.org/"
00:00:00.001 [INFO] [sway/main.c:78] BUG_REPORT_URL="https://gitlab.archlinux.org/groups/archlinux/-/issues"
00:00:00.001 [INFO] [sway/main.c:78] PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
00:00:00.001 [INFO] [sway/main.c:78] LOGO=archlinux-logo
00:00:00.001 [INFO] [sway/main.c:66] LD_LIBRARY_PATH=
00:00:00.001 [INFO] [sway/main.c:66] LD_PRELOAD=
00:00:00.001 [INFO] [sway/main.c:66] PATH=/home/timk/git/khronos/vulkansdk-linux-x86_64/1.4.313.0/x86_64/bin:/home/timk/git/khronos/vulkansdk-linux-x86_64/1.4.313.0/x86_64/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/var/lib/flatpak/exports/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
00:00:00.001 [INFO] [sway/main.c:66] SWAYSOCK=
00:00:00.001 [INFO] [sway/main.c:351] Starting sway version 1.11
00:00:00.001 [DEBUG] [sway/server.c:236] Initializing Wayland server
00:00:00.001 [INFO] [wlr] [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
00:00:00.001 [INFO] [wlr] [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
00:00:00.002 [INFO] [wlr] [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind'
00:00:00.002 [INFO] [wlr] [backend/session/session.c:108] Successfully loaded libseat session
00:00:00.006 [INFO] [wlr] [backend/backend.c:248] Found 2 GPUs
00:00:00.006 [INFO] [wlr] [backend/drm/backend.c:225] Initializing DRM backend for /dev/dri/card0 (nouveau)
00:00:00.006 [DEBUG] [wlr] [backend/drm/drm.c:106] Atomic modesetting unsupported, using legacy DRM interface
00:00:00.006 [DEBUG] [wlr] [backend/drm/drm.c:131] ADDFB2 modifiers supported
00:00:00.006 [INFO] [wlr] [backend/drm/drm.c:310] Found 4 DRM CRTCs
00:00:00.006 [INFO] [wlr] [backend/drm/drm.c:268] Found 12 DRM planes
00:00:00.006 [INFO] [wlr] [backend/drm/backend.c:225] Initializing DRM backend for /dev/dri/card1 (amdgpu)
00:00:00.007 [DEBUG] [wlr] [backend/drm/drm.c:110] Using atomic DRM interface
00:00:00.007 [DEBUG] [wlr] [backend/drm/drm.c:131] ADDFB2 modifiers unsupported
00:00:00.007 [INFO] [wlr] [backend/drm/drm.c:310] Found 6 DRM CRTCs
00:00:00.007 [INFO] [wlr] [backend/drm/drm.c:268] Found 12 DRM planes
00:00:00.007 [DEBUG] [wlr] [backend/drm/renderer.c:17] Creating multi-GPU renderer
00:00:00.035 [INFO] [wlr] [render/egl.c:205] 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.142 [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.143 [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.144 [DEBUG] [wlr] [render/egl.c:523] Using EGL device /dev/dri/card1
00:00:00.151 [INFO] [wlr] [render/egl.c:369] Using EGL 1.5
00:00:00.151 [INFO] [wlr] [render/egl.c:370] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_EXT_config_select_group 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_EXT_surface_compression 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_MESA_x11_native_visual_id EGL_WL_bind_wayland_display
00:00:00.151 [INFO] [wlr] [render/egl.c:372] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node
00:00:00.151 [INFO] [wlr] [render/egl.c:374] EGL vendor: Mesa Project
00:00:00.151 [DEBUG] [wlr] [render/egl.c:120] Supported DMA-BUF formats:
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB4H (0x48344241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XB4H (0x48344258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB48 (0x38344241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XB48 (0x38344258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AR30 (0x30335241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XR30 (0x30335258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB30 (0x30334241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XB30 (0x30334258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AR24 (0x34325241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB24 (0x34324241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XR24 (0x34325258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] XB24 (0x34324258)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AR15 (0x35315241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB15 (0x35314241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AR12 (0x32315241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] AB12 (0x32314241)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] RG16 (0x36314752)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] R8 (0x20203852)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] R16 (0x20363152)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] GR88 (0x38385247)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] GR32 (0x32335247)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] YUV9 (0x39565559)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] YU11 (0x31315559)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] YU12 (0x32315559)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:169] YU16 (0x36315559)
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.151 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YU24 (0x34325559)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YVU9 (0x39555659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YV11 (0x31315659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YV12 (0x32315659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YV16 (0x36315659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YV24 (0x34325659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] NV12 (0x3231564E)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] NV21 (0x3132564E)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] P010 (0x30313050)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] P012 (0x32313050)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] P016 (0x36313050)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] P030 (0x30333050)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] NV16 (0x3631564E)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] AYUV (0x56555941)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] XYUV (0x56555958)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y410 (0x30313459)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y412 (0x32313459)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y416 (0x36313459)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YUYV (0x56595559)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] YVYU (0x55595659)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] UYVY (0x59565955)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] VYUY (0x59555956)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y210 (0x30313259)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y212 (0x32313259)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:169] Y216 (0x36313259)
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.152 [DEBUG] [wlr] [render/egl.c:189] EGL DMA-BUF format modifiers unsupported
00:00:00.153 [DEBUG] [wlr] [render/egl.c:449] Obtained high priority context
00:00:00.153 [DEBUG] [wlr] [render/egl.c:573] Using EGL_PLATFORM_DEVICE_EXT
00:00:00.154 [INFO] [wlr] [render/gles2/renderer.c:538] Creating GLES2 renderer
00:00:00.154 [INFO] [wlr] [render/gles2/renderer.c:539] Using OpenGL ES 3.2 Mesa 25.1.4-arch1.2
00:00:00.154 [INFO] [wlr] [render/gles2/renderer.c:540] GL vendor: AMD
00:00:00.154 [INFO] [wlr] [render/gles2/renderer.c:541] GL renderer: AMD Radeon RX 580 Series (radeonsi, polaris10, ACO, DRM 3.63, 6.15.4-arch2-1)
00:00:00.154 [INFO] [wlr] [render/gles2/renderer.c:542] 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_EXT_texture_storage 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_EXT_shadow_samplers 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_multi_draw_indirect 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_filter_minmax 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_conservative_depth 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_KHR_shader_subgroup GL_MESA_sampler_objects GL_EXT_EGL_image_storage_compression GL_EXT_texture_storage_compression GL_MESA_bgra GL_MESA_texture_const_bandwidth
00:00:00.154 [DEBUG] [wlr] [render/gles2/renderer.c:597] GPU reset notifications are enabled
00:00:00.160 [DEBUG] [wlr] [render/allocator/allocator.c:115] Trying to create gbm allocator
00:00:00.164 [DEBUG] [wlr] [render/allocator/gbm.c:216] Created GBM allocator with backend drm
00:00:00.164 [DEBUG] [wlr] [render/allocator/gbm.c:219] Using DRM node /dev/dri/card1
00:00:00.164 [INFO] [wlr] [render/egl.c:205] 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.164 [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.165 [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.165 [DEBUG] [wlr] [render/egl.c:523] Using EGL device /dev/dri/card0
00:00:00.170 [INFO] [wlr] [render/egl.c:369] Using EGL 1.5
00:00:00.170 [INFO] [wlr] [render/egl.c:370] Supported EGL display extensions: EGL_ANDROID_blob_cache EGL_EXT_config_select_group 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_EXT_surface_compression 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_MESA_x11_native_visual_id EGL_WL_bind_wayland_display
00:00:00.170 [INFO] [wlr] [render/egl.c:372] Supported EGL device extensions: EGL_EXT_device_drm EGL_EXT_device_drm_render_node
00:00:00.170 [INFO] [wlr] [render/egl.c:374] EGL vendor: Mesa Project
00:00:00.170 [DEBUG] [wlr] [render/egl.c:120] Supported DMA-BUF formats:
00:00:00.170 [DEBUG] [wlr] [render/egl.c:169] AB4H (0x48344241)
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:169] XB4H (0x48344258)
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:169] AB48 (0x38344241)
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:169] XB48 (0x38344258)
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.170 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AR30 (0x30335241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] XR30 (0x30335258)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AB30 (0x30334241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] XB30 (0x30334258)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AR24 (0x34325241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AB24 (0x34324241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] XR24 (0x34325258)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] XB24 (0x34324258)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AR15 (0x35315241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AR12 (0x32315241)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] RG16 (0x36314752)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] R8 (0x20203852)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] R16 (0x20363152)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] GR88 (0x38385247)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] GR32 (0x32335247)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YUV9 (0x39565559)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YU11 (0x31315559)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YU12 (0x32315559)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YU16 (0x36315559)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YU24 (0x34325559)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YVU9 (0x39555659)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YV11 (0x31315659)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YV12 (0x32315659)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YV16 (0x36315659)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] YV24 (0x34325659)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] NV12 (0x3231564E)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] NV21 (0x3132564E)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] P010 (0x30313050)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] P012 (0x32313050)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] P016 (0x36313050)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] P030 (0x30333050)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] NV16 (0x3631564E)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] AYUV (0x56555941)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:169] XYUV (0x56555958)
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.171 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y410 (0x30313459)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y412 (0x32313459)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y416 (0x36313459)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] YUYV (0x56595559)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] YVYU (0x55595659)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] UYVY (0x59565955)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] VYUY (0x59555956)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y210 (0x30313259)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y212 (0x32313259)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:169] Y216 (0x36313259)
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] INVALID (0x00FFFFFFFFFFFFFF): ✓ texture ✓ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=5,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE015): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=3,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE013): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=2,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE012): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=1,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE011): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] BLOCK_LINEAR_2D,HEIGHT=0,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE010): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:103] LINEAR (0x0000000000000000): ✓ texture ✗ render
00:00:00.172 [DEBUG] [wlr] [render/egl.c:189] EGL DMA-BUF format modifiers supported
00:00:00.174 [DEBUG] [wlr] [render/egl.c:573] Using EGL_PLATFORM_DEVICE_EXT
00:00:00.174 [INFO] [wlr] [render/gles2/renderer.c:538] Creating GLES2 renderer
00:00:00.174 [INFO] [wlr] [render/gles2/renderer.c:539] Using OpenGL ES 3.2 Mesa 25.1.4-arch1.2
00:00:00.174 [INFO] [wlr] [render/gles2/renderer.c:540] GL vendor: Mesa
00:00:00.174 [INFO] [wlr] [render/gles2/renderer.c:541] GL renderer: NV124
00:00:00.174 [INFO] [wlr] [render/gles2/renderer.c:542] 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_EXT_texture_storage 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_EXT_shadow_samplers 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_multi_draw_indirect 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_texture_filter_minmax GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_NV_conservative_raster GL_NV_conservative_raster_dilate GL_NV_sample_locations GL_NV_viewport_array2 GL_NV_viewport_swizzle GL_OES_EGL_image_external_essl3 GL_OES_geometry_point_size GL_OES_geometry_shader GL_OES_shader_image_atomic GL_EXT_clear_texture GL_EXT_clip_cull_distance GL_EXT_conservative_depth 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_texture_compression_bptc GL_EXT_texture_mirror_clamp_to_edge GL_KHR_parallel_shader_compile GL_EXT_EGL_image_storage GL_EXT_texture_shadow_lod GL_MESA_framebuffer_flip_y GL_EXT_demote_to_helper_invocation GL_EXT_depth_clamp GL_EXT_texture_query_lod GL_MESA_sampler_objects GL_EXT_EGL_image_storage_compression GL_EXT_texture_storage_compression GL_MESA_bgra
00:00:00.174 [DEBUG] [wlr] [render/gles2/renderer.c:597] GPU reset notifications are enabled
00:00:00.174 [DEBUG] [wlr] [GLES2] type: 0, local: 0, shared: 0, gpr: 8, inst: 13, bytes: 144, cached: 1173
00:00:00.174 [DEBUG] [wlr] [GLES2] type: 4, local: 0, shared: 0, gpr: 4, inst: 5, bytes: 56, cached: 900
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 0, local: 0, shared: 0, gpr: 8, inst: 20, bytes: 216, cached: 1429
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 4, local: 0, shared: 0, gpr: 4, inst: 10, bytes: 112, cached: 1177
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 0, local: 0, shared: 0, gpr: 8, inst: 20, bytes: 216, cached: 1429
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 4, local: 0, shared: 0, gpr: 4, inst: 10, bytes: 112, cached: 1205
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 0, local: 0, shared: 0, gpr: 8, inst: 20, bytes: 216, cached: 1429
00:00:00.175 [DEBUG] [wlr] [GLES2] type: 4, local: 0, shared: 0, gpr: 4, inst: 10, bytes: 112, cached: 1177
00:00:00.176 [DEBUG] [wlr] [render/allocator/allocator.c:115] Trying to create gbm allocator
00:00:00.180 [DEBUG] [wlr] [render/allocator/gbm.c:216] Created GBM allocator with backend drm
00:00:00.180 [DEBUG] [wlr] [render/allocator/gbm.c:219] Using DRM node /dev/dri/card0
00:00:00.180 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:636] Creating wlr_drm_lease_device_v1 for /dev/dri/card0
00:00:00.181 [DEBUG] [wlr] [types/wlr_drm_lease_v1.c:636] Creating wlr_drm_lease_device_v1 for /dev/dri/card1
00:00:00.181 [INFO] [wlr] [backend/headless/backend.c:60] Creating headless backend
00:00:00.183 [INFO] [sway/config.c:422] Loading config from /home/timk/.config/sway/config
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 1: # Default config for sway
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 2: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 3: # Copy this to ~/.config/sway/config and edit it to your liking.
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 4: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 5: # Read `man 5 sway` for a complete reference.
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 6:
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 7: ### Variables
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 8: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 9: # Logo key. Use Mod1 for Alt.
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 10: set $mod Mod4
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $mod Mod4
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $mod Mod4
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 11: # Home row direction keys, like vim
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 12: set $left h
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $left h
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $left h
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 13: set $down j
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $down j
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $down j
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 14: set $up k
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $up k
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $up k
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 15: set $right l
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $right l
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $right l
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 16: # Your preferred terminal emulator
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 17: set $term wezterm
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $term wezterm
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $term wezterm
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 18: # Your preferred application launcher
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 19: # Note: pass the final command to swaymsg so that the resulting window can be opened
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 20: # on the original workspace that the command was run on.
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 21:
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 22: #set $menu dmenu_path | dmenu | xargs swaymsg exec --
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 23: set $menu dmenu_path | wmenu | xargs swaymsg exec --
00:00:00.183 [INFO] [sway/commands.c:381] Config command: set $menu dmenu_path | wmenu | xargs swaymsg exec --
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: set $menu dmenu_path | wmenu | xargs swaymsg exec --
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 24:
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 25: ### Output configuration
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 26: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 27: # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 28: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.183 [INFO] [sway/commands.c:381] Config command: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.183 [INFO] [sway/commands.c:404] After replacement: output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.183 [DEBUG] [sway/commands.c:436] Subcommand: bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
00:00:00.183 [DEBUG] [sway/config/output.c:272] Config stored for output * (enabled: -1) ([email protected] position 2147483647,2147483647 scale -1.000000 subpixel unknown transform -1) (bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 29: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 30: # Example configuration:
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 31: #
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 32: # output HDMI-A-1 resolution 1920x1080 position 1920,0
00:00:00.183 [DEBUG] [sway/config.c:781] Read line 33: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 34: # You can get the names of your outputs by running: swaymsg -t get_outputs
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 35:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 36: # Nested session
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 37: #output Unknown resolution 1920x1080
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 38: #output WL-1 resolution 1920x1080
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 39:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 40: # For running unrooted within another desktop environment
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 41: #output WL-1 resolution 2560x1440
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 42:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 43: # Posibly when running AMDGPU + Nouveau(?)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 44:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 45: # Left display
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 46: #output HDMI-A-1 transform 90
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 47: output "Dell Inc. DELL U2722D H0T7YG3" transform 90
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "Dell Inc. DELL U2722D H0T7YG3" transform 90
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "Dell Inc. DELL U2722D H0T7YG3" transform 90
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: transform 90
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output Dell Inc. DELL U2722D H0T7YG3 (enabled: -1) ([email protected] position 2147483647,2147483647 scale -1.000000 subpixel unknown transform 3) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 48: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 49: # Main display
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 50: #output DP-3 transform 0
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 51: output "BNQ BenQ PD3200U 81H04263019" transform 0
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "BNQ BenQ PD3200U 81H04263019" transform 0
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "BNQ BenQ PD3200U 81H04263019" transform 0
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: transform 0
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output BNQ BenQ PD3200U 81H04263019 (enabled: -1) ([email protected] position 2147483647,2147483647 scale -1.000000 subpixel unknown transform 0) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 52: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 53: # Right display
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 54: #output DP-2 transform 270
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 55: output "Dell Inc. DELL U2722D JZS7YG3" transform 270
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "Dell Inc. DELL U2722D JZS7YG3" transform 270
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "Dell Inc. DELL U2722D JZS7YG3" transform 270
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: transform 270
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output Dell Inc. DELL U2722D JZS7YG3 (enabled: -1) ([email protected] position 2147483647,2147483647 scale -1.000000 subpixel unknown transform 1) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 56:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 57:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 58:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 59: # DELL (left)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 60: #output HDMI-A-3 transform 90
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 61: #output HDMI-A-3 transform 90
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 62:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 63: # BENQ
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 64: #output DP-2 transform 0
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 65:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 66: # DELL (right)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 67: #output DP-1 transform 270
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 68:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 69:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 70: #output HDMI-A-1 pos -1440 -500
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 71: output "Dell Inc. DELL U2722D H0T7YG3" pos -1440 -500
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "Dell Inc. DELL U2722D H0T7YG3" pos -1440 -500
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "Dell Inc. DELL U2722D H0T7YG3" pos -1440 -500
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: pos -1440 -500
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output Dell Inc. DELL U2722D H0T7YG3 (enabled: -1) ([email protected] position -1440,-500 scale -1.000000 subpixel unknown transform -1) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 72: output "BNQ BenQ PD3200U 81H04263019" pos 0 0
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "BNQ BenQ PD3200U 81H04263019" pos 0 0
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "BNQ BenQ PD3200U 81H04263019" pos 0 0
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: pos 0 0
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output BNQ BenQ PD3200U 81H04263019 (enabled: -1) ([email protected] position 0,0 scale -1.000000 subpixel unknown transform -1) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 73: output "Dell Inc. DELL U2722D JZS7YG3" pos 3840 -400
00:00:00.184 [INFO] [sway/commands.c:381] Config command: output "Dell Inc. DELL U2722D JZS7YG3" pos 3840 -400
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: output "Dell Inc. DELL U2722D JZS7YG3" pos 3840 -400
00:00:00.184 [DEBUG] [sway/commands.c:436] Subcommand: pos 3840 -400
00:00:00.184 [DEBUG] [sway/config/output.c:272] Config stored for output Dell Inc. DELL U2722D JZS7YG3 (enabled: -1) ([email protected] position 3840,-400 scale -1.000000 subpixel unknown transform -1) (bg (null) (null)) (power -1) (max render time: -1) (allow tearing: -1)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 74:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 75:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 76: ### Idle configuration
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 77: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 78: # Example configuration:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 79: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 80: # exec swayidle -w \
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 81: # timeout 300 'swaylock -f -c 000000' \
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 82: # timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 83: # before-sleep 'swaylock -f -c 000000'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 84: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 85: # This will lock your screen after 300 seconds of inactivity, then turn off
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 86: # your displays after another 300 seconds, and turn your screens back on when
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 87: # resumed. It will also lock your screen before your computer goes to sleep.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 88:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 89: ### Input configuration
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 90: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 91: # Example configuration:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 92: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 93: # input "2:14:SynPS/2_Synaptics_TouchPad" {
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 94: # dwt enabled
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 95: # tap enabled
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 96: # natural_scroll enabled
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 97: # middle_emulation enabled
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 98: # }
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 99: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 100: # You can get the names of your inputs by running: swaymsg -t get_inputs
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 101: # Read `man 5 sway-input` for more information about this section.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 102:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 103: ### Key bindings
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 104: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 105: # Basics:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 106: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 107: # Start a terminal
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 108: bindsym $mod+Return exec $term
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Return exec $term
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Return exec wezterm
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Return to command `exec wezterm` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 109:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 110: # Kill focused window
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 111: bindsym $mod+Shift+q kill
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+q kill
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+q kill
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+q to command `kill` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 112:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 113: # Start your launcher
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 114: bindsym $mod+d exec $menu
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+d exec $menu
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+d exec dmenu_path | wmenu | xargs swaymsg exec --
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+d to command `exec dmenu_path | wmenu | xargs swaymsg exec --` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 115:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 116: # Drag floating windows by holding down $mod and left mouse button.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 117: # Resize them with right mouse button + $mod.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 118: # Despite the name, also works for non-floating windows.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 119: # Change normal to inverse to use left mouse button for resizing and right
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 120: # mouse button for dragging.
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 121: floating_modifier $mod normal
00:00:00.184 [INFO] [sway/commands.c:381] Config command: floating_modifier $mod normal
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: floating_modifier Mod4 normal
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 122:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 123: # Reload the configuration file
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 124: bindsym $mod+Shift+c reload
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+c reload
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+c reload
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+c to command `reload` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 125:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 126: # Exit sway (logs you out of your Wayland session)
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 127: 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.184 [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.184 [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.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+e to command `exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 128: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 129: # Moving around:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 130: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 131: # Move your focus around
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 132: bindsym $mod+$left focus left
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$left focus left
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+h focus left
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+h to command `focus left` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 133: bindsym $mod+$down focus down
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$down focus down
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+j focus down
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+j to command `focus down` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 134: bindsym $mod+$up focus up
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$up focus up
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+k focus up
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+k to command `focus up` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 135: bindsym $mod+$right focus right
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+$right focus right
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+l focus right
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+l to command `focus right` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 136: # Or use $mod+[up|down|left|right]
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 137: bindsym $mod+Left focus left
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Left focus left
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Left focus left
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Left to command `focus left` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 138: bindsym $mod+Down focus down
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Down focus down
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Down focus down
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Down to command `focus down` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 139: bindsym $mod+Up focus up
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Up focus up
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Up focus up
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Up to command `focus up` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 140: bindsym $mod+Right focus right
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Right focus right
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Right focus right
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Right to command `focus right` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 141:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 142: # Move the focused window with the same, but add Shift
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 143: bindsym $mod+Shift+$left move left
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$left move left
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+h move left
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+h to command `move left` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 144: bindsym $mod+Shift+$down move down
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$down move down
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+j move down
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+j to command `move down` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 145: bindsym $mod+Shift+$up move up
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$up move up
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+k move up
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+k to command `move up` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 146: bindsym $mod+Shift+$right move right
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+$right move right
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+l move right
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+l to command `move right` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 147: # Ditto, with arrow keys
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 148: bindsym $mod+Shift+Left move left
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Left move left
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Left move left
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Left to command `move left` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 149: bindsym $mod+Shift+Down move down
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Down move down
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Down move down
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Down to command `move down` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 150: bindsym $mod+Shift+Up move up
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Up move up
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Up move up
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Up to command `move up` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 151: bindsym $mod+Shift+Right move right
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+Right move right
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+Right move right
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+Right to command `move right` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 152: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 153: # Workspaces:
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 154: #
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 155: # Switch to workspace
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 156: bindsym $mod+1 workspace number 1
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+1 workspace number 1
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+1 workspace number 1
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+1 to command `workspace number 1` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 157: bindsym $mod+2 workspace number 2
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+2 workspace number 2
00:00:00.184 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+2 workspace number 2
00:00:00.184 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+2 to command `workspace number 2` for device '*'
00:00:00.184 [DEBUG] [sway/config.c:781] Read line 158: bindsym $mod+3 workspace number 3
00:00:00.184 [INFO] [sway/commands.c:381] Config command: bindsym $mod+3 workspace number 3
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+3 workspace number 3
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+3 to command `workspace number 3` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 159: bindsym $mod+4 workspace number 4
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+4 workspace number 4
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+4 workspace number 4
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+4 to command `workspace number 4` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 160: bindsym $mod+5 workspace number 5
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+5 workspace number 5
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+5 workspace number 5
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+5 to command `workspace number 5` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 161: bindsym $mod+6 workspace number 6
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+6 workspace number 6
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+6 workspace number 6
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+6 to command `workspace number 6` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 162: bindsym $mod+7 workspace number 7
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+7 workspace number 7
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+7 workspace number 7
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+7 to command `workspace number 7` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 163: bindsym $mod+8 workspace number 8
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+8 workspace number 8
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+8 workspace number 8
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+8 to command `workspace number 8` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 164: bindsym $mod+9 workspace number 9
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+9 workspace number 9
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+9 workspace number 9
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+9 to command `workspace number 9` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 165: bindsym $mod+0 workspace number 10
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+0 workspace number 10
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+0 workspace number 10
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+0 to command `workspace number 10` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 166: # Move focused container to workspace
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 167: bindsym $mod+Shift+1 move container to workspace number 1
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+1 move container to workspace number 1
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+1 move container to workspace number 1
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+1 to command `move container to workspace number 1` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 168: bindsym $mod+Shift+2 move container to workspace number 2
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+2 move container to workspace number 2
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+2 move container to workspace number 2
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+2 to command `move container to workspace number 2` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 169: bindsym $mod+Shift+3 move container to workspace number 3
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+3 move container to workspace number 3
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+3 move container to workspace number 3
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+3 to command `move container to workspace number 3` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 170: bindsym $mod+Shift+4 move container to workspace number 4
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+4 move container to workspace number 4
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+4 move container to workspace number 4
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+4 to command `move container to workspace number 4` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 171: bindsym $mod+Shift+5 move container to workspace number 5
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+5 move container to workspace number 5
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+5 move container to workspace number 5
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+5 to command `move container to workspace number 5` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 172: bindsym $mod+Shift+6 move container to workspace number 6
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+6 move container to workspace number 6
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+6 move container to workspace number 6
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+6 to command `move container to workspace number 6` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 173: bindsym $mod+Shift+7 move container to workspace number 7
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+7 move container to workspace number 7
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+7 move container to workspace number 7
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+7 to command `move container to workspace number 7` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 174: bindsym $mod+Shift+8 move container to workspace number 8
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+8 move container to workspace number 8
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+8 move container to workspace number 8
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+8 to command `move container to workspace number 8` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 175: bindsym $mod+Shift+9 move container to workspace number 9
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+9 move container to workspace number 9
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+9 move container to workspace number 9
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+9 to command `move container to workspace number 9` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 176: bindsym $mod+Shift+0 move container to workspace number 10
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+0 move container to workspace number 10
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+0 move container to workspace number 10
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+0 to command `move container to workspace number 10` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 177: # Note: workspaces can have any name you want, not just numbers.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 178: # We just use 1-10 as the default.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 179: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 180: # Layout stuff:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 181: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 182: # You can "split" the current object of your focus with
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 183: # $mod+b or $mod+v, for horizontal and vertical splits
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 184: # respectively.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 185: bindsym $mod+b splith
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+b splith
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+b splith
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+b to command `splith` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 186: bindsym $mod+v splitv
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+v splitv
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+v splitv
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+v to command `splitv` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 187:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 188: # Switch the current container between different layout styles
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 189: bindsym $mod+s layout stacking
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+s layout stacking
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+s layout stacking
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+s to command `layout stacking` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 190: bindsym $mod+w layout tabbed
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+w layout tabbed
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+w layout tabbed
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+w to command `layout tabbed` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 191: bindsym $mod+e layout toggle split
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+e layout toggle split
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+e layout toggle split
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+e to command `layout toggle split` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 192:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 193: # Make the current focus fullscreen
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 194: bindsym $mod+f fullscreen
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+f fullscreen
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+f fullscreen
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+f to command `fullscreen` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 195:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 196: # Toggle the current focus between tiling and floating mode
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 197: bindsym $mod+Shift+space floating toggle
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+space floating toggle
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+space floating toggle
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+space to command `floating toggle` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 198:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 199: # Swap focus between the tiling area and the floating area
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 200: bindsym $mod+space focus mode_toggle
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+space focus mode_toggle
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+space focus mode_toggle
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+space to command `focus mode_toggle` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 201:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 202: # Move focus to the parent container
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 203: bindsym $mod+a focus parent
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+a focus parent
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+a focus parent
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+a to command `focus parent` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 204: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 205: # Scratchpad:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 206: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 207: # Sway has a "scratchpad", which is a bag of holding for windows.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 208: # You can send windows there and get them back later.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 209:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 210: # Move the currently focused window to the scratchpad
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 211: bindsym $mod+Shift+minus move scratchpad
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+Shift+minus move scratchpad
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+Shift+minus move scratchpad
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+Shift+minus to command `move scratchpad` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 212:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 213: # Show the next scratchpad window or hide the focused scratchpad window.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 214: # If there are multiple scratchpad windows, this command cycles through them.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 215: bindsym $mod+minus scratchpad show
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+minus scratchpad show
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+minus scratchpad show
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+minus to command `scratchpad show` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 216: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 217: # Resizing containers:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 218: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 219: mode "resize" {
00:00:00.185 [DEBUG] [sway/config.c:835] Entering block 'mode "resize"'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 220: # left will shrink the containers width
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 221: # right will grow the containers width
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 222: # up will shrink the containers height
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 223: # down will grow the containers height
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 224: bindsym $left resize shrink width 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $left resize shrink width 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym h resize shrink width 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym h resize shrink width 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound h to command `resize shrink width 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 225: bindsym $down resize grow height 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $down resize grow height 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym j resize grow height 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym j resize grow height 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound j to command `resize grow height 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 226: bindsym $up resize shrink height 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $up resize shrink height 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym k resize shrink height 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym k resize shrink height 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound k to command `resize shrink height 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 227: bindsym $right resize grow width 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym $right resize grow width 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym l resize grow width 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym l resize grow width 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound l to command `resize grow width 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 228:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 229: # Ditto, with arrow keys
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 230: bindsym Left resize shrink width 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Left resize shrink width 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Left resize shrink width 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Left resize shrink width 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Left to command `resize shrink width 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 231: bindsym Down resize grow height 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Down resize grow height 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Down resize grow height 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Down resize grow height 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Down to command `resize grow height 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 232: bindsym Up resize shrink height 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Up resize shrink height 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Up resize shrink height 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Up resize shrink height 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Up to command `resize shrink height 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 233: bindsym Right resize grow width 10px
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Right resize grow width 10px
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Right resize grow width 10px
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Right resize grow width 10px
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Right to command `resize grow width 10px` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 234:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 235: # Return to default mode
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 236: bindsym Return mode "default"
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Return mode "default"
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Return mode "default"
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Return mode "default"
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Return to command `mode "default"` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 237: bindsym Escape mode "default"
00:00:00.185 [INFO] [sway/commands.c:381] Config command: mode "resize" bindsym Escape mode "default"
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: mode "resize" bindsym Escape mode "default"
00:00:00.185 [DEBUG] [sway/commands.c:436] Subcommand: bindsym Escape mode "default"
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Escape to command `mode "default"` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 238: }
00:00:00.185 [DEBUG] [sway/config.c:852] Exiting block 'mode "resize"'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 239: bindsym $mod+r mode "resize"
00:00:00.185 [INFO] [sway/commands.c:381] Config command: bindsym $mod+r mode "resize"
00:00:00.185 [INFO] [sway/commands.c:404] After replacement: bindsym Mod4+r mode "resize"
00:00:00.185 [DEBUG] [sway/commands/bind.c:297] bindsym - Bound Mod4+r to command `mode "resize"` for device '*'
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 240:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 241: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 242: # Status Bar:
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 243: #
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 244: # Read `man 5 sway-bar` for more information about this section.
00:00:00.185 [DEBUG] [sway/config.c:781] Read line 245: bar {
00:00:00.186 [DEBUG] [sway/config.c:835] Entering block 'bar'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 246: position top
00:00:00.186 [INFO] [sway/commands.c:381] Config command: bar position top
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: bar position top
00:00:00.186 [DEBUG] [sway/commands/bar.c:90] Creating bar: bar-0
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: position top
00:00:00.186 [DEBUG] [sway/commands/bar/position.c:14] Setting bar position 'top' for bar: bar-0
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 247:
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 248: # When the status_command prints a new line to stdout, swaybar updates.
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 249: # The default just shows the current date and time.
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 250: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.186 [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.186 [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.186 [DEBUG] [sway/commands.c:436] Subcommand: status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
00:00:00.186 [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.186 [DEBUG] [sway/config.c:781] Read line 251:
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 252: colors {
00:00:00.186 [DEBUG] [sway/config.c:835] Entering block 'bar colors'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 253: statusline #ffffff
00:00:00.186 [INFO] [sway/commands.c:381] Config command: bar colors statusline #ffffff
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: bar colors statusline #ffffff
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: colors statusline #ffffff
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: statusline #ffffff
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 254: background #323232
00:00:00.186 [INFO] [sway/commands.c:381] Config command: bar colors background #323232
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: bar colors background #323232
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: colors background #323232
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: background #323232
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 255: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.186 [INFO] [sway/commands.c:381] Config command: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: bar colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: colors inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.186 [DEBUG] [sway/commands.c:436] Subcommand: inactive_workspace #32323200 #32323200 #5c5c5c
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 256: }
00:00:00.186 [DEBUG] [sway/config.c:852] Exiting block 'bar colors'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 257: }
00:00:00.186 [DEBUG] [sway/config.c:852] Exiting block 'bar'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 258:
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 259: include /etc/sway/config.d/*
00:00:00.186 [INFO] [sway/commands.c:381] Config command: include /etc/sway/config.d/*
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: include /etc/sway/config.d/*
00:00:00.186 [INFO] [sway/config.c:422] Loading config from /etc/sway/config.d/50-systemd-user.conf
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 1: # sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 2: # See FS#63021
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 3: # Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 4:
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 5: # Upstream refuses to set XDG_CURRENT_DESKTOP so we have to.
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 6: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway
00:00:00.186 [INFO] [sway/commands.c:381] Config command: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway
00:00:00.186 [DEBUG] [sway/config.c:825] Deferring command `exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 10: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
00:00:00.186 [INFO] [sway/commands.c:381] Config command: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
00:00:00.186 [INFO] [sway/commands.c:404] After replacement: exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
00:00:00.186 [DEBUG] [sway/config.c:825] Deferring command `exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP'
00:00:00.186 [DEBUG] [sway/config.c:781] Read line 11:
00:00:00.186 [DEBUG] [sway/config.c:781] 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.186 [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.186 [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.186 [DEBUG] [sway/config.c:825] Deferring command `exec hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP=sway WAYLAND_DISPLAY'
Fontconfig warning: using without calling FcInit()
00:00:00.193 [DEBUG] [sway/input/input-manager.c:190] no fallback seat config - creating default
00:00:00.193 [DEBUG] [sway/config/seat.c:65] Adding non-wildcard seat config
00:00:00.193 [DEBUG] [sway/config/seat.c:82] Config stored for seat seat0
00:00:00.193 [DEBUG] [sway/input/input-manager.c:637] applying seat config for seat seat0
00:00:00.193 [DEBUG] [sway/input/input-manager.c:637] applying seat config for seat seat0
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[0] = swaybg
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[1] = -o
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[2] = *
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[3] = -i
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[4] = /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[5] = -m
00:00:00.193 [DEBUG] [sway/config/output.c:1150] spawn_swaybg cmd[6] = fill
00:00:00.194 [DEBUG] [sway/server.c:511] Initializing Xwayland (lazy=1)
00:00:00.194 [INFO] [sway/server.c:538] Starting backend on wayland display 'wayland-1'
00:00:00.194 [DEBUG] [wlr] [backend/libinput/backend.c:88] Starting libinput backend
00:00:00.256 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Power Button [0:1]
00:00:00.256 [DEBUG] [sway/input/input-manager.c:240] adding device: '0:1:Power_Button'
00:00:00.256 [DEBUG] [sway/input/seat.c:945] adding device 0:1:Power_Button to seat seat0
00:00:00.259 [DEBUG] [sway/input/keyboard.c:947] Created keyboard group 0x560895492520
00:00:00.259 [DEBUG] [sway/input/keyboard.c:970] Adding keyboard 0:1:Power_Button to group 0x560895492520
00:00:00.260 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Power Button [0:1]
00:00:00.260 [DEBUG] [sway/input/input-manager.c:240] adding device: '0:1:Power_Button'
00:00:00.260 [DEBUG] [sway/input/seat.c:945] adding device 0:1:Power_Button to seat seat0
00:00:00.262 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 0:1:Power_Button to group 0x560895492520
00:00:00.263 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Sleep Button [0:3]
00:00:00.263 [DEBUG] [sway/input/input-manager.c:240] adding device: '0:3:Sleep_Button'
00:00:00.263 [DEBUG] [sway/input/seat.c:945] adding device 0:3:Sleep_Button to seat seat0
00:00:00.266 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 0:3:Sleep_Button to group 0x560895492520
00:00:00.266 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Fnatic Gear Fnatic Gear STREAK Keyboard [12046:257]
00:00:00.266 [DEBUG] [sway/input/input-manager.c:240] adding device: '12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard'
00:00:00.266 [DEBUG] [sway/input/seat.c:945] adding device 12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard to seat seat0
00:00:00.269 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard to group 0x560895492520
00:00:00.270 [DEBUG] [sway/input/input-manager.c:240] adding device: '12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard'
00:00:00.270 [DEBUG] [sway/input/seat.c:945] adding device 12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard to seat seat0
00:00:00.277 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:224] Loaded cursor theme 'default' at size 24 (62 available cursors)
00:00:00.277 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard
00:00:00.277 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding ROCCAT ROCCAT Kone Pure Owl-Eye Mouse [7805:11725]
00:00:00.277 [DEBUG] [sway/input/input-manager.c:240] adding device: '7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Mouse'
00:00:00.277 [DEBUG] [sway/input/seat.c:945] adding device 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Mouse to seat seat0
00:00:00.277 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Mouse
00:00:00.277 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding ROCCAT ROCCAT Kone Pure Owl-Eye Consumer Control [7805:11725]
00:00:00.277 [DEBUG] [sway/input/input-manager.c:240] adding device: '7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control'
00:00:00.277 [DEBUG] [sway/input/seat.c:945] adding device 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control to seat seat0
00:00:00.279 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control to group 0x560895492520
00:00:00.280 [DEBUG] [sway/input/input-manager.c:240] adding device: '7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control'
00:00:00.280 [DEBUG] [sway/input/seat.c:945] adding device 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control to seat seat0
00:00:00.280 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control
00:00:00.280 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding ROCCAT ROCCAT Kone Pure Owl-Eye System Control [7805:11725]
00:00:00.280 [DEBUG] [sway/input/input-manager.c:240] adding device: '7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_System_Control'
00:00:00.280 [DEBUG] [sway/input/seat.c:945] adding device 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_System_Control to seat seat0
00:00:00.283 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_System_Control to group 0x560895492520
00:00:00.283 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding ROCCAT ROCCAT Kone Pure Owl-Eye [7805:11725]
00:00:00.283 [DEBUG] [sway/input/input-manager.c:240] adding device: '7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye'
00:00:00.283 [DEBUG] [sway/input/seat.c:945] adding device 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye to seat seat0
00:00:00.286 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye to group 0x560895492520
00:00:00.287 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Keychron Keychron Q3 [13364:289]
00:00:00.287 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3'
00:00:00.287 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3 to seat seat0
00:00:00.289 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 13364:289:Keychron_Keychron_Q3 to group 0x560895492520
00:00:00.290 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Keychron Keychron Q3 Mouse [13364:289]
00:00:00.290 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3_Mouse'
00:00:00.290 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3_Mouse to seat seat0
00:00:00.290 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 13364:289:Keychron_Keychron_Q3_Mouse
00:00:00.290 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Keychron Keychron Q3 System Control [13364:289]
00:00:00.290 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3_System_Control'
00:00:00.290 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3_System_Control to seat seat0
00:00:00.293 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 13364:289:Keychron_Keychron_Q3_System_Control to group 0x560895492520
00:00:00.293 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Keychron Keychron Q3 Consumer Control [13364:289]
00:00:00.293 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3_Consumer_Control'
00:00:00.293 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3_Consumer_Control to seat seat0
00:00:00.296 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 13364:289:Keychron_Keychron_Q3_Consumer_Control to group 0x560895492520
00:00:00.297 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3_Consumer_Control'
00:00:00.297 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3_Consumer_Control to seat seat0
00:00:00.297 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 13364:289:Keychron_Keychron_Q3_Consumer_Control
00:00:00.297 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Keychron Keychron Q3 Keyboard [13364:289]
00:00:00.297 [DEBUG] [sway/input/input-manager.c:240] adding device: '13364:289:Keychron_Keychron_Q3_Keyboard'
00:00:00.297 [DEBUG] [sway/input/seat.c:945] adding device 13364:289:Keychron_Keychron_Q3_Keyboard to seat seat0
00:00:00.299 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 13364:289:Keychron_Keychron_Q3_Keyboard to group 0x560895492520
00:00:00.300 [DEBUG] [wlr] [backend/libinput/events.c:69] Adding Eee PC WMI hotkeys [0:0]
00:00:00.300 [DEBUG] [sway/input/input-manager.c:240] adding device: '0:0:Eee_PC_WMI_hotkeys'
00:00:00.300 [DEBUG] [sway/input/seat.c:945] adding device 0:0:Eee_PC_WMI_hotkeys to seat seat0
00:00:00.303 [DEBUG] [sway/input/keyboard.c:922] Adding keyboard 0:0:Eee_PC_WMI_hotkeys to group 0x560895492520
00:00:00.303 [DEBUG] [wlr] [backend/libinput/backend.c:125] libinput successfully initialized
00:00:00.303 [INFO] [wlr] [backend/drm/drm.c:1741] Scanning DRM connectors on /dev/dri/card0
00:00:00.313 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DVI-I-1'
00:00:00.313 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DVI-D-2'
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'HDMI-A-3'
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1821] 'HDMI-A-3' connected
00:00:00.378 [DEBUG] [wlr] [backend/drm/drm.c:1596] Current CRTC: 61
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1610] Detected modes:
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 2560x1440 @ 59.951 Hz (preferred)
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 2048x1080 @ 59.998 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 2048x1080 @ 23.997 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 60.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 59.940 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 50.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1600x1200 @ 60.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 75.025 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 60.020 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1152x864 @ 75.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 60.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 59.940 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 50.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 75.029 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 60.004 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 75.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 60.317 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 720x576 @ 50.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 60.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 59.940 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 75.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 60.000 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 59.940 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1634] 720x400 @ 70.082 Hz
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1671] Physical size: 600x340
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DP-3'
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1855] connector HDMI-A-3: Requesting modeset
00:00:00.378 [DEBUG] [sway/desktop/output.c:534] New output 0x5608957ba900: HDMI-A-3 (non-desktop: 0)
00:00:00.378 [INFO] [wlr] [backend/drm/drm.c:1741] Scanning DRM connectors on /dev/dri/card1
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DP-1'
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1821] 'DP-1' connected
00:00:00.386 [DEBUG] [wlr] [backend/drm/drm.c:1596] Current CRTC: 60
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1610] Detected modes:
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 2560x1440 @ 59.951 Hz (preferred)
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1200 @ 59.951 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 2048x1080 @ 59.998 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 2048x1080 @ 23.997 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 60.000 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 60.000 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 59.940 Hz
00:00:00.386 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 50.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 30.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 29.970 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 25.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 24.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 23.976 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1600x1200 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1680x1050 @ 59.951 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 75.025 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 60.020 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1440x900 @ 59.951 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x800 @ 59.951 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1152x864 @ 75.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 59.940 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 50.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 75.029 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 60.004 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 75.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 60.317 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x576 @ 50.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x576 @ 50.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 59.940 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 59.940 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 75.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 60.000 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 59.940 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 59.940 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1634] 720x400 @ 70.082 Hz
00:00:00.387 [INFO] [wlr] [backend/drm/drm.c:1671] Physical size: 600x340
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DP-2'
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1821] 'DP-2' connected
00:00:00.397 [DEBUG] [wlr] [backend/drm/drm.c:1596] Current CRTC: 63
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1610] Detected modes:
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 59.997 Hz (preferred)
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 50.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 30.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 29.970 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 29.981 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 25.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 24.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 3840x2160 @ 23.976 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 2560x1440 @ 59.951 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1200 @ 59.997 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 50.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 30.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 29.970 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 25.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 24.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1920x1080 @ 23.976 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1600x1200 @ 59.997 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1680x1050 @ 59.954 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1600x900 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 75.025 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x1024 @ 60.020 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1440x900 @ 59.997 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x800 @ 59.810 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1152x864 @ 75.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1280x720 @ 50.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 75.029 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 1024x768 @ 60.004 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 832x624 @ 74.551 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 75.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 800x600 @ 60.317 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 720x576 @ 50.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 720x480 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 75.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 60.000 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 640x480 @ 59.940 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1634] 720x400 @ 70.082 Hz
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1671] Physical size: 710x400
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'HDMI-A-1'
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'HDMI-A-2'
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1796] Found connector 'DVI-D-1'
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1855] connector DP-1: Requesting modeset
00:00:00.397 [DEBUG] [sway/desktop/output.c:534] New output 0x5608957e5410: DP-1 (non-desktop: 0)
00:00:00.397 [INFO] [wlr] [backend/drm/drm.c:1855] connector DP-2: Requesting modeset
00:00:00.397 [DEBUG] [sway/desktop/output.c:534] New output 0x5608957e2360: DP-2 (non-desktop: 0)
00:00:00.397 [INFO] [wlr] [backend/headless/backend.c:17] Starting headless backend
00:00:00.397 [DEBUG] [sway/config/output.c:880] Committing 3 outputs
00:00:00.397 [DEBUG] [sway/config/output.c:643] Output state for DP-2
00:00:00.397 [DEBUG] [sway/config/output.c:645] enabled: yes
00:00:00.397 [DEBUG] [sway/config/output.c:649] render_format: XR24
00:00:00.397 [DEBUG] [sway/config/output.c:657] mode: 3840x2160@59997mHz (preferred)
00:00:00.397 [DEBUG] [sway/config/output.c:667] scale: 1.000000
00:00:00.397 [DEBUG] [sway/config/output.c:670] subpixel: unknown
00:00:00.397 [DEBUG] [sway/config/output.c:643] Output state for DP-1
00:00:00.397 [DEBUG] [sway/config/output.c:645] enabled: yes
00:00:00.397 [DEBUG] [sway/config/output.c:649] render_format: XR24
00:00:00.397 [DEBUG] [sway/config/output.c:657] mode: 2560x1440@59951mHz (preferred)
00:00:00.397 [DEBUG] [sway/config/output.c:667] scale: 1.000000
00:00:00.397 [DEBUG] [sway/config/output.c:670] subpixel: unknown
00:00:00.397 [DEBUG] [sway/config/output.c:643] Output state for HDMI-A-3
00:00:00.397 [DEBUG] [sway/config/output.c:645] enabled: yes
00:00:00.397 [DEBUG] [sway/config/output.c:649] render_format: XR24
00:00:00.397 [DEBUG] [sway/config/output.c:657] mode: 2560x1440@59951mHz (preferred)
00:00:00.397 [DEBUG] [sway/config/output.c:667] scale: 1.000000
00:00:00.397 [DEBUG] [sway/config/output.c:670] subpixel: unknown
00:00:00.397 [DEBUG] [wlr] [types/wlr_output_swapchain_manager.c:160] Preparing test commit for 3 outputs with explicit modifiers
00:00:00.397 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.400 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 3840x2160 GBM buffer with format XR24 (0x34325258), modifier LINEAR (0x0000000000000000)
00:00:00.400 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.401 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier LINEAR (0x0000000000000000)
00:00:00.401 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.401 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014)
00:00:00.401 [DEBUG] [wlr] [types/wlr_output_swapchain_manager.c:181] Test commit for 3 outputs succeeded
00:00:00.402 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3840x2160
00:00:00.403 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.403 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.440 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3840x2160
00:00:00.440 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.440 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 3840x2160 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF)
00:00:00.440 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3840x2160
00:00:00.445 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.445 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.445 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 2560x1440 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF)
00:00:00.445 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.459 [DEBUG] [sway/config/output.c:940] Commit of 3 outputs succeeded
00:00:00.459 [DEBUG] [sway/config/output.c:946] Finalizing config for DP-2
00:00:00.459 [DEBUG] [sway/config/output.c:541] Set DP-2 position to 0, 0
00:00:00.466 [DEBUG] [wlr] [xcursor/wlr_xcursor.c:224] Loaded cursor theme 'default' at size 24 (62 available cursors)
00:00:00.466 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.467 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.467 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.467 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.467 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output DP-2
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 1
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10'
00:00:00.467 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10'
00:00:00.467 [DEBUG] [sway/tree/output.c:163] Creating default workspace 1
00:00:00.467 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 1 for output DP-2
00:00:00.467 [DEBUG] [sway/config/output.c:946] Finalizing config for DP-1
00:00:00.467 [DEBUG] [sway/config/output.c:541] Set DP-1 position to 3840, -400
00:00:00.467 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.467 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.467 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.467 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:00.467 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:00.468 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output DP-1
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 2
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10'
00:00:00.468 [DEBUG] [sway/tree/output.c:163] Creating default workspace 2
00:00:00.468 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 2 for output DP-1
00:00:00.468 [DEBUG] [sway/config/output.c:946] Finalizing config for HDMI-A-3
00:00:00.468 [DEBUG] [sway/config/output.c:541] Set HDMI-A-3 position to -1440, -500
00:00:00.468 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.468 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:00.468 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 256x256
00:00:00.468 [DEBUG] [sway/tree/workspace.c:294] Workspace: Generating new workspace name for output HDMI-A-3
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 1'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '1'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 2'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '2'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 3'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '3'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:285] Workspace: Found free name 3
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 4'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '4'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 5'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '5'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 6'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '6'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 7'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '7'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 8'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '8'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 9'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '9'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:231] Got valid workspace command for target: 'number 10'
00:00:00.468 [DEBUG] [sway/tree/workspace.c:256] Isolated name from workspace number: '10'
00:00:00.468 [DEBUG] [sway/tree/output.c:163] Creating default workspace 3
00:00:00.468 [DEBUG] [sway/tree/workspace.c:65] Adding workspace 3 for output HDMI-A-3
00:00:00.468 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2160@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.468 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2560@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '2' at 3840.000000, -400.000000
00:00:00.468 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2560@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '3' at -1440.000000, -500.000000
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2160@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 0.000000
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2560@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '2' at 3840.000000, -400.000000
00:00:00.468 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2560@0,0
00:00:00.468 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '3' at -1440.000000, -500.000000
00:00:00.468 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895852090 committing with 6 instructions
00:00:00.468 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895852090
00:00:00.469 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 13364:289:Keychron_Keychron_Q3_Consumer_Control
00:00:00.469 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 13364:289:Keychron_Keychron_Q3_Mouse
00:00:00.469 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Consumer_Control
00:00:00.469 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 7805:11725:ROCCAT_ROCCAT_Kone_Pure_Owl-Eye_Mouse
00:00:00.469 [DEBUG] [sway/input/seat.c:694] Applying input mapping to 12046:257:Fnatic_Gear_Fnatic_Gear_STREAK_Keyboard
00:00:00.469 [DEBUG] [sway/config/bar.c:245] Invoking swaybar for bar id 'bar-0'
00:00:00.470 [DEBUG] [sway/config/bar.c:238] Spawned swaybar bar-0
00:00:00.470 [DEBUG] [sway/config.c:630] Running deferred commands
00:00:00.470 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user set-environment XDG_CURRENT_DESKTOP=sway'
00:00:00.470 [DEBUG] [sway/commands/exec_always.c:47] Executing systemctl --user set-environment XDG_CURRENT_DESKTOP=sway
00:00:00.471 [DEBUG] [sway/commands/exec_always.c:73] Child process created with pid 2143
00:00:00.471 [DEBUG] [sway/commands/exec_always.c:75] Recording workspace for process 2143
00:00:00.471 [INFO] [sway/commands.c:261] Handling command 'exec systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP'
00:00:00.471 [DEBUG] [sway/commands/exec_always.c:47] Executing systemctl --user import-environment DISPLAY SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
00:00:00.471 [DEBUG] [sway/commands/exec_always.c:73] Child process created with pid 2144
00:00:00.471 [DEBUG] [sway/commands/exec_always.c:75] Recording workspace for process 2144
00:00:00.472 [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.472 [DEBUG] [sway/commands/exec_always.c:47] 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.472 [DEBUG] [sway/commands/exec_always.c:73] Child process created with pid 2145
00:00:00.472 [DEBUG] [sway/commands/exec_always.c:75] Recording workspace for process 2145
00:00:00.472 [INFO] [sway/server.c:550] Running compositor on wayland display 'wayland-1'
00:00:00.473 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.473 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 2560x1440 GBM buffer with format XR24 (0x34325258), modifier BLOCK_LINEAR_2D,HEIGHT=4,KIND=254,GEN=0,SECTOR=1,COMPRESSION=0 (0x03000000004FE014)
00:00:00.473 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.473 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.474 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 2560x1440 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF)
00:00:00.474 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 2560x1440
00:00:00.474 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:00.474 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 3840x2160 GBM buffer with format AR24 (0x34325241), modifier INVALID (0x00FFFFFFFFFFFFFF)
00:00:00.474 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3840x2160
2025-07-03 15:19:59 - [swaybg-1.2.1/main.c:282] Found config * for output DP-2 (BNQ BenQ PD3200U 81H04263019)
2025-07-03 15:19:59 - [swaybg-1.2.1/main.c:282] Found config * for output DP-1 (Dell Inc. DELL U2722D JZS7YG3)
2025-07-03 15:19:59 - [swaybg-1.2.1/main.c:282] Found config * for output HDMI-A-3 (Dell Inc. DELL U2722D H0T7YG3)
00:00:00.475 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608957706c0 (res 0x56089578f250)
00:00:00.475 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x5608953d7bb0 (res 0x560895786050)
00:00:00.475 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.475 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608953d8970 (res 0x5608957909f0)
00:00:00.475 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x5608953d9280 (res 0x56089578eef0)
00:00:00.475 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.475 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x56089539c020 (res 0x5608957900f0)
00:00:00.475 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x560895498430 (res 0x56089578ffd0)
00:00:00.475 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace wallpaper layer 0 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.475 [DEBUG] [sway/ipc-server.c:196] New client: fd 93
00:00:00.475 [DEBUG] [sway/ipc-server.c:196] New client: fd 95
Environment variable $XDG_CURRENT_DESKTOP not set, ignoring.
00:00:00.491 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x56089526f440 (res 0x560895795310)
00:00:00.491 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x5608953da8f0 (res 0x56089577fe50)
00:00:00.491 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.491 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x56089526f8a0 (res 0x560895795550)
00:00:00.491 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x5608953daa80 (res 0x560895431b70)
00:00:00.491 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.491 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x56089527dc60 (res 0x5608953d4730)
00:00:00.491 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x560895410f00 (res 0x56089551e020)
00:00:00.491 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace panel layer 1 anchor 0 size 0x0 margin 0,0,0,0,
00:00:00.493 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.493 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:00.493 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:00.493 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895428ae0 committing with 1 instructions
00:00:00.493 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895428ae0
00:00:00.494 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.494 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2539@0,21
00:00:00.494 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '2' at 3840.000000, -379.000000
00:00:00.494 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x56089540eb70 committing with 1 instructions
00:00:00.494 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x56089540eb70
00:00:00.494 [DEBUG] [sway/desktop/layer_shell.c:96] Usable area changed, rearranging output
00:00:00.494 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 1440x2539@0,21
00:00:00.494 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '3' at -1440.000000, -479.000000
00:00:00.494 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895852090 committing with 1 instructions
00:00:00.494 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895852090
00:00:00.526 [DEBUG] [wlr] [backend/drm/drm.c:846] connector DP-2: Buffer is not a DMA-BUF
00:00:00.542 [DEBUG] [wlr] [backend/drm/drm.c:846] connector DP-2: Buffer is not a DMA-BUF
00:00:03.373 [DEBUG] [sway/commands/bind.c:617] running command for binding: exec dmenu_path | wmenu | xargs swaymsg exec --
00:00:03.373 [INFO] [sway/commands.c:261] Handling command 'exec dmenu_path | wmenu | xargs swaymsg exec --'
00:00:03.373 [DEBUG] [sway/commands/exec_always.c:47] Executing dmenu_path | wmenu | xargs swaymsg exec --
00:00:03.377 [DEBUG] [sway/commands/exec_always.c:73] Child process created with pid 2157
00:00:03.377 [DEBUG] [sway/commands/exec_always.c:75] Recording workspace for process 2157
Fontconfig warning: using without calling FcInit()
00:00:03.391 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x560895422650 (res 0x56089546a9f0)
00:00:03.391 [DEBUG] [wlr] [types/wlr_layer_shell_v1.c:504] new layer_surface 0x560895858ce0 (res 0x560895858e10)
00:00:03.391 [DEBUG] [sway/desktop/layer_shell.c:412] new layer surface: namespace menu layer 3 anchor 0 size 0x0 margin 0,0,0,0,
00:00:05.068 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x5608953df8f0 committing with 2 instructions
00:00:05.068 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x5608953df8f0
00:00:05.073 [DEBUG] [sway/ipc-server.c:196] New client: fd 100
00:00:05.073 [INFO] [sway/commands.c:261] Handling command 'exec wezterm'
00:00:05.073 [DEBUG] [sway/commands/exec_always.c:47] Executing wezterm
00:00:05.078 [DEBUG] [sway/commands/exec_always.c:73] Child process created with pid 2169
00:00:05.078 [DEBUG] [sway/commands/exec_always.c:75] Recording workspace for process 2169
[
{
"success": true
}
]
00:00:05.079 [INFO] [sway/ipc-server.c:570] IPC Client 100 disconnected
00:00:05.161 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x560895422650 (res 0x56089549dd10)
00:00:05.180 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608953db580 (res 0x5608953d34b0)
00:00:05.180 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:441] new xdg_surface 0x560895867f70 (res 0x5608953d8240)
00:00:05.180 [DEBUG] [sway/desktop/xdg_shell.c:543] New xdg_shell toplevel title='(null)' app_id='(null)'
00:00:05.180 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608958cc3f0 (res 0x5608958cc7c0)
00:00:05.180 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:220] new xdg_toplevel_decoration 0x5608958cc8e0 (res 0x5608958cca00)
00:00:05.339 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1220x847
00:00:05.339 [DEBUG] [sway/desktop/launcher.c:85] Looking up workspace for pid 2169
00:00:05.339 [DEBUG] [sway/desktop/launcher.c:92] found workspace match for pid 2169: 1
00:00:05.339 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:05.339 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:05.339 [DEBUG] [sway/tree/arrange.c:76] Arranging 0x7fffc0e9adc0 horizontally
00:00:05.339 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895751610 committing with 3 instructions
00:00:05.339 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:05.339 [INFO] [sway/input/text_input.c:252] Enabling text input when input method is gone
00:00:05.339 [DEBUG] [sway/desktop/transaction.c:907] Transaction 0x560895751610 is ready
00:00:05.339 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895751610
00:00:05.342 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1220x847
00:00:05.342 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:05.342 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:05.342 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:05.377 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608958d1100 (res 0x560895903ff0)
00:00:05.377 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x560895909280 (res 0x560895909650)
00:00:05.474 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3836x2114
00:00:05.505 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3836x2114
00:00:06.046 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.049 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 3836x2114
00:00:06.078 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.078 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.078 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.119 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.148 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.148 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.148 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.173 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.186 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.248 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.248 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.248 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.266 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.346 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.346 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.346 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.381 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.448 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.448 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.448 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.508 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.544 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.544 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.544 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.551 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.646 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.646 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.646 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.686 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:06.748 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:06.748 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:06.748 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:06.967 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:07.029 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:07.048 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:07.048 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:07.048 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:07.136 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:07.148 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:07.148 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:07.148 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:07.885 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:07.920 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:07.920 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:07.920 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.013 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.013 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.013 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.280 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.312 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.312 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.312 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.338 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.380 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.380 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.380 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.380 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.415 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.479 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.479 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.479 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.504 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.577 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.577 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.577 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.627 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.680 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.680 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.680 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.690 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.762 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.779 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.780 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.780 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:08.881 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:08.980 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:08.980 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:08.980 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:09.340 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.371 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:09.371 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:09.372 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:09.390 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.437 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.446 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:09.446 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:09.446 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:09.623 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.646 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:09.646 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:09.646 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:09.776 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.846 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:09.846 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:09.846 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:09.920 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:09.947 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:09.947 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:09.947 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:10.069 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:10.146 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:10.146 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:10.146 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:10.196 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:10.247 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:10.247 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:10.247 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:10.323 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:10.344 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:10.344 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:10.344 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.085 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:11.117 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.117 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.117 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.205 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.205 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.205 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.289 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.289 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.289 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.384 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.384 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.384 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.485 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.485 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.485 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.579 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.579 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.579 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.721 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.721 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.721 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.787 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.787 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.787 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.870 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.870 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.870 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:11.974 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:11.974 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:11.974 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.073 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.073 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.073 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.173 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.173 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.173 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.274 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.274 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.274 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.377 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.377 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.377 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.473 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.473 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.473 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.564 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.564 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.564 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.674 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.674 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.674 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.775 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.775 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.775 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.868 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.868 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.868 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:12.976 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:12.976 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:12.976 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.076 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.076 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.076 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.176 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.176 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.176 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.276 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.277 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.277 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.380 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.380 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.380 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.484 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.485 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.485 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.572 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.572 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.572 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:13.694 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:13.694 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:13.694 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:17.649 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:17.790 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:17.790 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:17.790 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:18.361 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:18.429 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:18.429 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:18.429 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:18.482 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:18.482 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:18.482 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:18.531 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:18.666 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:18.701 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:18.701 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:18.701 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:18.799 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:18.799 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:18.799 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:19.840 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.840 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.840 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 256x256
00:00:19.841 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.841 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.841 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.842 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.842 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.842 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.842 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.843 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.843 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.843 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.843 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.843 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.844 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.844 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.847 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.847 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.847 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 256x256
00:00:19.848 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.848 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.848 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:19.850 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.850 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 256x256 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.850 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 256x256
00:00:19.864 [DEBUG] [wlr] [render/swapchain.c:101] Allocating new swapchain buffer
00:00:19.864 [DEBUG] [wlr] [render/allocator/gbm.c:146] Allocated 128x128 GBM buffer with format AR24 (0x34325241), modifier LINEAR (0x0000000000000000)
00:00:19.864 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 128x128
00:00:20.341 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:20.341 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:20.341 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:22.392 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:22.393 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:22.394 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:25.508 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:25.508 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:25.508 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:25.599 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:25.599 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:25.599 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:25.799 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:25.799 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:25.799 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:25.999 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:25.999 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:25.999 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:26.378 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:26.378 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:26.378 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:26.874 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:26.874 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:26.874 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:27.013 [INFO] [wlr] [xwayland/server.c:107] Starting Xwayland on :0
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning: Could not resolve keysym XF86RefreshRateToggle
> Warning: Could not resolve keysym XF86Accessibility
> Warning: Could not resolve keysym XF86DoNotDisturb
Errors from xkbcomp are not fatal to the X server
00:00:27.106 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x560895915500 (res 0x5608959158d0)
00:00:27.106 [DEBUG] [wlr] [xwayland/server.c:283] Xserver is ready
00:00:27.106 [DEBUG] [wlr] [xwayland/xwm.c:2286] xfixes version: 6.0
00:00:27.106 [DEBUG] [wlr] [xwayland/xwm.c:2307] xres version: 1.2
00:00:27.107 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.107 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning: Unsupported maximum keycode 708, clipping.
> X11 cannot support keycodes above 255.
> Warning: Could not resolve keysym XF86RefreshRateToggle
> Warning: Could not resolve keysym XF86Accessibility
> Warning: Could not resolve keysym XF86DoNotDisturb
Errors from xkbcomp are not fatal to the X server
00:00:27.112 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.112 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: MappingNotify (34)
00:00:27.112 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.112 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: MappingNotify (34)
00:00:27.117 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.117 [DEBUG] [sway/desktop/xwayland.c:875] New xwayland unmanaged surface
00:00:27.117 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.117 [DEBUG] [sway/desktop/xwayland.c:790] New xwayland surface title='(null)' class='(null)'
00:00:27.117 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.117 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.169 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [sway/desktop/xwayland.c:790] New xwayland surface title='(null)' class='(null)'
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 34 (WM_COMMAND) for window 6291457
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 36 (WM_CLIENT_MACHINE) for window 6291457
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.170 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 422 (WM_LOCALE_NAME) for window 6291457
00:00:27.170 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.205 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.205 [DEBUG] [wlr] [xwayland/xwm.c:695] XCB_ATOM_NET_STARTUP_ID: a1094e12188d4858417ed30a1d65af0f
00:00:27.205 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.205 [DEBUG] [sway/desktop/xwayland.c:790] New xwayland surface title='(null)' class='(null)'
00:00:27.205 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.205 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.205 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.206 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 390 (_NET_WM_OPAQUE_REGION) for window 6291459
00:00:27.257 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.257 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 307 (XdndAware) for window 6291459
00:00:27.287 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.287 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 379 (_GTK_THEME_VARIANT) for window 6291459
00:00:27.384 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.384 [DEBUG] [sway/desktop/xwayland.c:790] New xwayland surface title='(null)' class='(null)'
00:00:27.402 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 36 (WM_CLIENT_MACHINE) for window 4194308
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 377 (_GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED) for window 4194308
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 392 (_NET_WM_SYNC_REQUEST_COUNTER) for window 4194308
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 387 (_NET_WM_BYPASS_COMPOSITOR) for window 4194308
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 307 (XdndAware) for window 4194308
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [sway/tree/view.c:466] View 0x56089538a480 updated CSD to 1
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.403 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.422 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.422 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.422 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.425 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.425 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 389 (_NET_WM_ICON) for window 4194308
00:00:27.442 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [sway/desktop/xwayland.c:875] New xwayland unmanaged surface
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 393 (_NET_WM_USER_TIME) for window 4194308
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.443 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 350 (CHROMIUM_TIMESTAMP) for window 4194311
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 350 (CHROMIUM_TIMESTAMP) for window 4194311
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 350 (CHROMIUM_TIMESTAMP) for window 4194311
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 279 (WM_STATE) for window 4194308
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [xwayland/selection/selection.c:148] not handling selection events: no seat assigned to xwayland
00:00:27.445 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608959250c0 (res 0x560895925490)
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:2055] New xwayland surface: 0x5608959250c0
00:00:27.445 [DEBUG] [sway/tree/view.c:466] View 0x56089538a480 updated CSD to 1
00:00:27.445 [DEBUG] [wlr] [xwayland/xwm.c:695] XCB_ATOM_NET_STARTUP_ID: (null)
00:00:27.445 [DEBUG] [sway/desktop/tearing.c:47] New presentation hint 0 received for surface 0x5608959250c0
00:00:27.445 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1080x1596
00:00:27.446 [DEBUG] [sway/desktop/launcher.c:85] Looking up workspace for pid 2386
00:00:27.446 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:27.446 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:27.446 [DEBUG] [sway/tree/arrange.c:76] Arranging 0x7fffc0e9ad60 horizontally
00:00:27.446 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895493eb0 committing with 4 instructions
00:00:27.447 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:27.447 [DEBUG] [sway/input/text_input.c:290] Disabling text input, but no longer focused
00:00:27.448 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:27.452 [DEBUG] [sway/desktop/xwayland.c:790] New xwayland surface title='(null)' class='(null)'
00:00:27.466 [DEBUG] [sway/desktop/transaction.c:907] Transaction 0x560895493eb0 is ready
00:00:27.466 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895493eb0
00:00:27.467 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:27.467 [INFO] [sway/input/text_input.c:264] Inactive text input tried to commit an update
00:00:27.557 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:27.622 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:27.645 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:27.711 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:29.229 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:29.230 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:29.231 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:29.231 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:30.470 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:48] Activation token '45d04c47ab11c957567eaebaf54a0fd8' has expired
00:00:30.471 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:48] Activation token '4bc7581fc8afe6c58c102986fc74183c' has expired
00:00:30.472 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:48] Activation token '00ff1ce0b598a402b3f9036ef8dea7f4' has expired
00:00:30.532 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 393 (_NET_WM_USER_TIME) for window 4194308
00:00:32.735 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: MappingNotify (34)
00:00:32.735 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: MappingNotify (34)
00:00:32.737 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 393 (_NET_WM_USER_TIME) for window 4194308
00:00:33.373 [DEBUG] [wlr] [types/wlr_xdg_activation_v1.c:48] Activation token '63bfe319fe144e5980a08812070cb9bf' has expired
00:00:35.391 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608959237f0 (res 0x560895932510)
00:00:35.391 [DEBUG] [wlr] [types/wlr_compositor.c:786] New wlr_surface 0x5608959287d0 (res 0x560895929b70)
00:00:35.391 [DEBUG] [wlr] [types/xdg_shell/wlr_xdg_surface.c:441] new xdg_surface 0x560895926df0 (res 0x56089592bf20)
00:00:35.391 [DEBUG] [sway/desktop/xdg_shell.c:543] New xdg_shell toplevel title='(null)' app_id='(null)'
00:00:35.393 [DEBUG] [wlr] [types/wlr_xdg_decoration_v1.c:220] new xdg_toplevel_decoration 0x560895935910 (res 0x560895935880)
00:00:39.273 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1440x900
00:00:39.273 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:39.273 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:39.273 [DEBUG] [sway/tree/arrange.c:76] Arranging 0x7fffc0e9adc0 horizontally
00:00:39.273 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895929b30 committing with 5 instructions
00:00:39.273 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: FocusOut (10)
00:00:39.274 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.276 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:39.280 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.332 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1440x900
00:00:39.335 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1440x900
00:00:39.335 [DEBUG] [sway/desktop/transaction.c:907] Transaction 0x560895929b30 is ready
00:00:39.335 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895929b30
00:00:39.383 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.386 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.387 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.392 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.479 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.479 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:39.545 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:41.285 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895929c00 committing with 4 instructions
00:00:41.285 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895929c00
00:00:41.285 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: FocusOut (10)
00:00:41.286 [DEBUG] [wlr] [xwayland/xwm.c:1105] unhandled X11 property 393 (_NET_WM_USER_TIME) for window 4194308
00:00:41.369 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:41.383 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:41.412 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:42.345 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895929290 committing with 4 instructions
00:00:42.345 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895929290
00:00:42.345 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:42.348 [DEBUG] [wlr] [xwayland/xwm.c:1947] unhandled X11 event: FocusOut (10)
00:00:42.436 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:42.450 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:42.479 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:45.918 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:45.918 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:45.918 [DEBUG] [sway/tree/arrange.c:76] Arranging 0x7fffc0e9b350 horizontally
00:00:45.918 [DEBUG] [sway/tree/arrange.c:161] Arranging 0x7fffc0e9b240 vertically
00:00:45.918 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895929290 committing with 5 instructions
00:00:45.920 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:45.934 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1276x2114
00:00:45.934 [DEBUG] [sway/desktop/transaction.c:907] Transaction 0x560895929290 is ready
00:00:45.934 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895929290
00:00:45.935 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1045
00:00:45.935 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:45.935 [INFO] [sway/input/text_input.c:264] Inactive text input tried to commit an update
00:00:45.951 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:46.013 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:46.017 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:46.017 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1045
00:00:46.096 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:46.096 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:46.163 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x2114
00:00:47.110 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895929b30 committing with 5 instructions
00:00:47.110 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895929b30
00:00:47.111 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:47.111 [INFO] [sway/input/text_input.c:252] Enabling text input when input method is gone
00:00:47.113 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:47.113 [DEBUG] [sway/input/text_input.c:267] Text input committed update
00:00:47.113 [INFO] [sway/input/text_input.c:269] Text input committed, but input method is gone
00:00:47.214 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:47.282 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:47.346 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:47.851 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:47.851 [DEBUG] [sway/input/cursor.c:888] denying request to set cursor from unfocused client
00:00:47.855 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x56089592dd90 committing with 5 instructions
00:00:47.855 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x56089592dd90
00:00:47.857 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:47.857 [DEBUG] [sway/input/text_input.c:290] Disabling text input, but no longer focused
00:00:47.865 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:47.865 [INFO] [sway/input/text_input.c:264] Inactive text input tried to commit an update
00:00:47.960 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:48.016 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:48.062 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:49.200 [DEBUG] [sway/tree/container.c:1874] Swapping containers 9 and 11
00:00:49.201 [DEBUG] [sway/tree/arrange.c:274] Usable area for ws: 3840x2139@0,21
00:00:49.201 [DEBUG] [sway/tree/arrange.c:308] Arranging workspace '1' at 0.000000, 21.000000
00:00:49.201 [DEBUG] [sway/tree/arrange.c:76] Arranging 0x7fffc0e9b350 horizontally
00:00:49.201 [DEBUG] [sway/tree/arrange.c:161] Arranging 0x7fffc0e9b240 vertically
00:00:49.201 [DEBUG] [sway/desktop/transaction.c:821] Transaction 0x560895942460 committing with 5 instructions
00:00:49.237 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:49.238 [DEBUG] [sway/desktop/transaction.c:907] Transaction 0x560895942460 is ready
00:00:49.238 [DEBUG] [sway/desktop/transaction.c:717] Applying transaction 0x560895942460
00:00:49.238 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:49.239 [DEBUG] [wlr] [types/wlr_text_input_v3.c:190] Text input commit received without focus
00:00:49.239 [INFO] [sway/input/text_input.c:264] Inactive text input tried to commit an update
00:00:49.247 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1044
00:00:49.259 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1045
00:00:49.332 [DEBUG] [wlr] [render/gles2/renderer.c:157] Created GL FBO for buffer 1916x1045
nouveau: kernel rejected pushbuf: No such device
nouveau: ch3: krec 0 pushes 1 bufs 8 relocs 0
nouveau: ch3: buf 00000000 0000000b 00000004 00000004 00000000 0x7fc22c638000 0x3ba0000 0x80000
nouveau: ch3: buf 00000001 00000008 00000002 00000002 00000002 (nil) 0x620000 0xe0000
nouveau: ch3: buf 00000002 00000006 00000004 00000000 00000004 0x7fc245a70000 0x224000 0x1000
nouveau: ch3: buf 00000003 0000000a 00000002 00000002 00000002 (nil) 0x3b80000 0x20000
nouveau: ch3: buf 00000004 00000010 00000004 00000000 00000004 (nil) 0x3da0000 0x3c00000
nouveau: ch3: buf 00000005 00000007 00000002 00000002 00000000 (nil) 0x5a0000 0x80000
nouveau: ch3: buf 00000006 00000037 00000002 00000002 00000000 (nil) 0x108a0000 0x1000000
nouveau: ch3: buf 00000007 00000011 00000004 00000004 00000000 0x7fc22c198000 0x79a0000 0x200000
nouveau: ch3: psh 00000000 0000020584 0000020698
[0x00000000] HDR 200308e0 subch 0 NINC
mthd 2380 NVB197_SET_CONSTANT_BUFFER_SELECTOR_A
.SIZE = (0x10000)
mthd 2384 NVB197_SET_CONSTANT_BUFFER_SELECTOR_B
.ADDRESS_UPPER = (0x0)
mthd 2388 NVB197_SET_CONSTANT_BUFFER_SELECTOR_C
.ADDRESS_LOWER = (0x620000)
[0x00000004] HDR a01908e3 subch 0 1INC
mthd 238c NVB197_LOAD_CONSTANT_BUFFER_OFFSET
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3f7f7778)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3a888c00)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3ffa8c53)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0xbf759204)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3f800000)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3f800000)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3f800000)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x3f800000)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x0)
[0x0000001e] HDR 20024062 subch 2 NINC
mthd 0188 NVA140_OFFSET_OUT_UPPER
.VALUE = 0x0
mthd 018c NVA140_OFFSET_OUT
.VALUE = 0x3b87e80
[0x00000021] HDR 20024060 subch 2 NINC
mthd 0180 NVA140_LINE_LENGTH_IN
.VALUE = 0x20
mthd 0184 NVA140_LINE_COUNT
.VALUE = 0x1
[0x00000024] HDR a009406c subch 2 1INC
mthd 01b0 NVA140_LAUNCH_DMA
.VALUE = 0x1001
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x74e24908
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x108a0000
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x600000
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x70020
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0xe880077b
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x80000841
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x3000000
mthd 01b4 NVA140_LOAD_INLINE_DATA
.VALUE = 0x0
[0x0000002e] HDR 200104cd subch 0 NINC
mthd 1334 NVB197_INVALIDATE_TEXTURE_HEADER_CACHE
.LINES = ALL
.TAG = (0x0)
[0x00000030] HDR 200308e0 subch 0 NINC
mthd 2380 NVB197_SET_CONSTANT_BUFFER_SELECTOR_A
.SIZE = (0x10000)
mthd 2384 NVB197_SET_CONSTANT_BUFFER_SELECTOR_B
.ADDRESS_UPPER = (0x0)
mthd 2388 NVB197_SET_CONSTANT_BUFFER_SELECTOR_C
.ADDRESS_LOWER = (0x6c0000)
[0x00000034] HDR 200208e3 subch 0 NINC
mthd 238c NVB197_LOAD_CONSTANT_BUFFER_OFFSET
.V = (0x20)
mthd 2390 NVB197_LOAD_CONSTANT_BUFFER(0)
.V = (0x1003f4)
[0x00000037] HDR 20010700 subch 0 NINC
mthd 1c00 NVB197_SET_VERTEX_STREAM_A_FORMAT(0)
.STRIDE = (0x8)
.ENABLE = TRUE
[0x00000039] HDR a0050e02 subch 0 1INC
mthd 3808 NVB197_CALL_MME_MACRO(1)
.V = (0x0)
mthd 380c NVB197_CALL_MME_DATA(1)
.V = (0x0)
mthd 380c NVB197_CALL_MME_DATA(1)
.V = (0x7a0641f)
mthd 380c NVB197_CALL_MME_DATA(1)
.V = (0x0)
mthd 380c NVB197_CALL_MME_DATA(1)
.V = (0x7a063f0)
[0x0000003f] HDR 20010586 subch 0 NINC
mthd 1618 NVB197_BEGIN
.OP = TRIANGLES
.PRIMITIVE_ID = FIRST
.INSTANCE_ID = FIRST
.SPLIT_MODE = NORMAL_BEGIN_NORMAL_END
[0x00000041] HDR 2002035d subch 0 NINC
mthd 0d74 NVB197_SET_VERTEX_ARRAY_START
.V = (0x0)
mthd 0d78 NVB197_DRAW_VERTEX_ARRAY
.COUNT = (0x6)
[0x00000044] HDR 80000585 subch 0 IMMD
mthd 1614 NVB197_END
.V = (0x0)
nouveau: kernel rejected pushbuf: No such device
nouveau: ch3: krec 0 pushes 1 bufs 0 relocs 0
(EE) failed to read Wayland events: Broken pipe
00:00:49.324 [ERROR] [swaybar/bar.c:465] Wayland display poll error
15:20:48.806 ERROR wezterm_gui > running message loop: error during event_q.read_events protocol_error=None: Broken pipe (os error 32); terminating
15:20:48.816 ERROR wezterm_toast_notification::dbus > while showing notification: org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
warning: queue 0x5634996c3b10 destroyed while proxies still attached:
wl_buffer#44 still attached
wl_buffer#42 still attached
wl_shm_pool#41 still attached
wl_buffer#38 still attached
wl_shm_pool#37 still attached
xdg_wm_base#24 still attached
wl_surface#23 still attached
wl_data_device#20 still attached
wl_pointer#18 still attached
zwp_text_input_v3#17 still attached
wl_keyboard#16 still attached
zwp_primary_selection_device_v1#15 still attached
zwp_primary_selection_device_manager_v1#3 still attached
wl_data_device#14 still attached
wl_output#13 still attached
wl_output#12 still attached
wl_output#11 still attached
wl_seat#10 still attached
zwp_text_input_manager_v3#9 still attached
zxdg_decoration_manager_v1#8 still attached
wl_data_device_manager#7 still attached
wl_subcompositor#6 still attached
wl_compositor#5 still attached
wl_shm#4 still attached
wl_registry#2 still attached
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment