Hi, I'm running Debian 10 with cinnamon installed. I would like to install 
qtile to run along side cinnamon. The first issue I have is when I try to 
run qtile from lightdm, it just gives an error that it can't run the 
command 'qtile'. 

[Desktop Entry]
Name=Qtile
Comment=Qtile Session
Exec=qtile
Type=Application
Keywords=wm;tiling

However, I did manage to run qtile from a tty by running 'xinit qtile'. 
Everything was working as expected. I made a few simple changes to my 
config file, and when restarting qtile it says something like 'config err' 
in the left corner, and reverts to the default config. I tried running it 
with the python command to check for syntax errors like the Arch wiki 
reccomended, but it gave no output. I just can't seem to find the root of 
the problem. I'd be happy if you could help.

-- 
You received this message because you are subscribed to the Google Groups 
"qtile-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qtile-dev/7a670359-2ecc-426c-8c2e-e4dd2e4c32d8%40googlegroups.com.
# Copyright (c) 2010 Aldo Cortesi
# Copyright (c) 2010, 2014 dequis
# Copyright (c) 2012 Randall Ma
# Copyright (c) 2012-2014 Tycho Andersen
# Copyright (c) 2012 Craig Barnes
# Copyright (c) 2013 horsik
# Copyright (c) 2013 Tao Sauvage
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from libqtile.config import Key, Screen, Group, Drag, Click
from libqtile.lazy import lazy
from libqtile import layout, bar, widget

from typing import List  # noqa: F401

mod = "mod4"

keys = [
    # Switch between windows in current stack pane
    Key([mod], "k", lazy.layout.down()),
    Key([mod], "j", lazy.layout.up()),

    # Move windows up or down in current stack
    Key([mod, "control"], "k", lazy.layout.shuffle_down()),
    Key([mod, "control"], "j", lazy.layout.shuffle_up()),

    # Switch window focus to other pane(s) of stack
    Key([mod], "space", lazy.layout.next()),

    # Swap panes of split stack
    Key([mod, "shift"], "space", lazy.layout.rotate()),

    # Toggle between split and unsplit sides of stack.
    # Split = all windows displayed
    # Unsplit = 1 window displayed, like Max layout, but still with
    # multiple stack panes
    Key([mod, "shift"], "Return", lazy.layout.toggle_split()),
    Key([mod], "Return", lazy.spawn("xterm")),

    # Toggle between different layouts as defined below
    Key([mod], "Tab", lazy.next_layout()),
    Key([mod, "shift"], "c", lazy.window.kill()),

    Key([mod, "control"], "r", lazy.restart()),
    Key([mod, "control"], "q", lazy.shutdown()),

    # Custom Inputs
    Key([mod], "r", lazy.spawn("dmenu_run")),
    Key([mod], "w", lazy.spawn("firefox-esr")),
]

groups = [Group(i) for i in "123456789"]

for i in groups:
    keys.extend([
        # mod1 + letter of group = switch to group
        Key([mod], i.name, lazy.group[i.name].toscreen()),

        # mod1 + shift + letter of group = switch to & move focused window to group
        Key([mod, "shift"], i.name, lazy.window.togroup(i.name, switch_group=True)),
        # Or, use below if you prefer not to switch to that group.
        # # mod1 + shift + letter of group = move focused window to group
        # Key([mod, "shift"], i.name, lazy.window.togroup(i.name)),
    ])

# Layout Themes
layout_theme = {"border_width": 2,
                "margin": 6,
                }

layouts = [
    layout.Max(**layout_theme),
    # layout.Stack(num_stacks=2),
    layout.floating(**layout_theme),
    # Try more layouts by unleashing below layouts.
    # layout.Bsp(),
    # layout.Columns(),
    # layout.Matrix(),
    layout.MonadTall(**layout_theme),
    # layout.MonadWide(),
    # layout.RatioTile(),
     layout.Tile(**layout_theme),
    # layout.TreeTab(),
    # layout.VerticalTile(),
    # layout.Zoomy(),
]

widget_defaults = dict(
    font='sans',
    fontsize=12,
    padding=3,
)
extension_defaults = widget_defaults.copy()

screens = [
    Screen(
        bottom=bar.Bar(
            [
                widget.CurrentLayout(),
                widget.GroupBox(),
                widget.Prompt(),
                widget.WindowName(),
                widget.Systray(),
                widget.Clock(format='%m-%d-%y %a %I:%M%P'),
                widget.QuickExit(),
            ],
            24,
        ),
    ),
]

# Drag floating layouts.
mouse = [
    Drag([mod], "Button1", lazy.window.set_position_floating(),
         start=lazy.window.get_position()),
    Drag([mod], "Button3", lazy.window.set_size_floating(),
         start=lazy.window.get_size()),
    Click([mod], "Button2", lazy.window.bring_to_front())
]

dgroups_key_binder = None
dgroups_app_rules = []  # type: List
main = None
follow_mouse_focus = True
bring_front_click = False
cursor_warp = False
floating_layout = layout.Floating(float_rules=[
    # Run the utility of `xprop` to see the wm class and name of an X client.
    {'wmclass': 'confirm'},
    {'wmclass': 'dialog'},
    {'wmclass': 'download'},
    {'wmclass': 'error'},
    {'wmclass': 'file_progress'},
    {'wmclass': 'notification'},
    {'wmclass': 'splash'},
    {'wmclass': 'toolbar'},
    {'wmclass': 'confirmreset'},  # gitk
    {'wmclass': 'makebranch'},  # gitk
    {'wmclass': 'maketag'},  # gitk
    {'wname': 'branchdialog'},  # gitk
    {'wname': 'pinentry'},  # GPG key password entry
    {'wmclass': 'ssh-askpass'},  # ssh-askpass
])
auto_fullscreen = True
focus_on_window_activation = "smart"

# XXX: Gasp! We're lying here. In fact, nobody really uses or cares about this
# string besides java UI toolkits; you can see several discussions on the
# mailing lists, GitHub issues, and other WM documentation that suggest setting
# this string if your java app doesn't work correctly. We may as well just lie
# and say that we're a working one by default.
#
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
# java that happens to be on java's whitelist.
wmname = "LG3D"
2020-04-18 20:42:00,502 WARNING libqtile 
xcursors.py:_setup_xcursor_binding():L112 xcb-cursor not found, fallback to 
font pointer
2020-04-18 20:42:00,765 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.mpd2widget.Mpd2', No module named 
'mpd'
2020-04-18 20:42:00,790 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.wlan.Wlan', No module named 'iwlib'
2020-04-18 20:42:00,791 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.khal_calendar.KhalCalendar', No 
module named 'dateutil'
2020-04-18 20:42:01,125 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.pulse_volume.PulseVolume', No module 
named 'libqtile.widget._pulse_audio'
2020-04-18 20:42:59,506 WARNING libqtile 
xcursors.py:_setup_xcursor_binding():L112 xcb-cursor not found, fallback to 
font pointer
2020-04-18 20:42:59,614 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.mpd2widget.Mpd2', No module named 
'mpd'
2020-04-18 20:42:59,617 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.wlan.Wlan', No module named 'iwlib'
2020-04-18 20:42:59,618 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.khal_calendar.KhalCalendar', No 
module named 'dateutil'
2020-04-18 20:42:59,654 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.pulse_volume.PulseVolume', No module 
named 'libqtile.widget._pulse_audio'
2020-04-18 20:56:10,723 ERROR libqtile xcore.py:_xpoll():L277 Got an exception 
in poll loop
Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 231, in _xpoll
    event = self.conn.conn.poll_for_event()
  File "/home/sith/.local/lib/python3.7/site-packages/xcffib/__init__.py", line 
571, in wrapper
    return f(*args)
  File "/home/sith/.local/lib/python3.7/site-packages/xcffib/__init__.py", line 
612, in poll_for_event
    return self.hoist_event(e)
  File "/home/sith/.local/lib/python3.7/site-packages/xcffib/__init__.py", line 
685, in hoist_event
    return self._process_error(ffi.cast("xcb_generic_error_t *", e))
  File "/home/sith/.local/lib/python3.7/site-packages/xcffib/__init__.py", line 
648, in _process_error
    raise error(buf)
xcffib.xproto.MatchError
2020-04-18 20:56:56,656 ERROR libqtile xcore.py:_xpoll():L277 Got an exception 
in poll loop
Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 246, in _xpoll
    ret = target(event)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 494, in handle_KeyPress
    self.qtile.process_key_event(keysym, event.state & self._valid_mask)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/core/manager.py", line 
336, in process_key_event
    key = self.keys_map[(keysym, mask)]
KeyError: (65515, 0)
2020-04-18 20:57:00,288 ERROR libqtile xcore.py:_xpoll():L277 Got an exception 
in poll loop
Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 246, in _xpoll
    ret = target(event)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 494, in handle_KeyPress
    self.qtile.process_key_event(keysym, event.state & self._valid_mask)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/core/manager.py", line 
336, in process_key_event
    key = self.keys_map[(keysym, mask)]
KeyError: (103, 64)
2020-04-18 20:57:01,328 ERROR libqtile xcore.py:_xpoll():L277 Got an exception 
in poll loop
Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 246, in _xpoll
    ret = target(event)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/backend/x11/xcore.py", 
line 494, in handle_KeyPress
    self.qtile.process_key_event(keysym, event.state & self._valid_mask)
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/core/manager.py", line 
336, in process_key_event
    key = self.keys_map[(keysym, mask)]
KeyError: (104, 64)
2020-04-18 20:58:45,626 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=25165831, prop='WM_STATE'), ignoring
2020-04-18 21:00:37,374 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=29360134, prop='WM_STATE'), ignoring
2020-04-18 21:01:07,970 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=25165831, prop='WM_STATE'), ignoring
2020-04-18 21:09:12,982 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=29360134, prop='WM_STATE'), ignoring
2020-04-18 21:09:18,304 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388621, prop='WM_STATE'), ignoring
2020-04-18 21:09:18,335 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=10485763, prop='WM_STATE'), ignoring
2020-04-18 23:14:46,364 WARNING libqtile manager.py:loop():L249 Restarting 
Qtile with os.execv(...)
2020-04-18 23:14:46,515 WARNING libqtile 
xcursors.py:_setup_xcursor_binding():L112 xcb-cursor not found, fallback to 
font pointer
2020-04-18 23:14:46,618 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.mpd2widget.Mpd2', No module named 
'mpd'
2020-04-18 23:14:46,621 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.wlan.Wlan', No module named 'iwlib'
2020-04-18 23:14:46,621 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.khal_calendar.KhalCalendar', No 
module named 'dateutil'
2020-04-18 23:14:46,655 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.pulse_volume.PulseVolume', No module 
named 'libqtile.widget._pulse_audio'
2020-04-18 23:14:46,655 ERROR libqtile confreader.py:from_file():L91 Could not 
import config file '/home/sith/.config/qtile/config.py'
Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable
2020-04-18 23:14:46,682 ERROR libqtile qtile.py:make_qtile():L129 Error while 
reading config file (Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable
)
Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/scripts/qtile.py", line 
127, in make_qtile
    config = confreader.Config.from_file(kore, options.configfile)
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 93, in from_file
    raise ConfigError(tb)
libqtile.confreader.ConfigError: Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable

2020-04-18 23:19:34,496 WARNING libqtile manager.py:loop():L249 Restarting 
Qtile with os.execv(...)
2020-04-18 23:19:34,649 WARNING libqtile 
xcursors.py:_setup_xcursor_binding():L112 xcb-cursor not found, fallback to 
font pointer
2020-04-18 23:19:34,757 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.mpd2widget.Mpd2', No module named 
'mpd'
2020-04-18 23:19:34,759 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.wlan.Wlan', No module named 'iwlib'
2020-04-18 23:19:34,760 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.khal_calendar.KhalCalendar', No 
module named 'dateutil'
2020-04-18 23:19:34,793 WARNING libqtile utils.py:safe_import():L192 Unmet 
dependencies for optional Widget: '.widget.pulse_volume.PulseVolume', No module 
named 'libqtile.widget._pulse_audio'
2020-04-18 23:19:34,794 ERROR libqtile confreader.py:from_file():L91 Could not 
import config file '/home/sith/.config/qtile/config.py'
Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable
2020-04-18 23:19:34,794 ERROR libqtile qtile.py:make_qtile():L129 Error while 
reading config file (Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable
)
Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"/home/sith/.local/lib/python3.7/site-packages/libqtile/scripts/qtile.py", line 
127, in make_qtile
    config = confreader.Config.from_file(kore, options.configfile)
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 93, in from_file
    raise ConfigError(tb)
libqtile.confreader.ConfigError: Traceback (most recent call last):
  File "/home/sith/.local/lib/python3.7/site-packages/libqtile/confreader.py", 
line 87, in from_file
    config = __import__(os.path.basename(path)[:-3])  # noqa: F811
  File "/home/sith/.config/qtile/config.py", line 91, in <module>
    layout.floating(**layout_theme),
TypeError: 'module' object is not callable

2020-04-18 23:34:23,997 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388988, prop='WM_STATE'), ignoring
2020-04-18 23:34:24,221 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388611, prop='WM_STATE'), ignoring
2020-04-18 23:34:26,122 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=25165837, prop='WM_STATE'), ignoring
2020-04-18 23:34:49,854 ERROR libqtile manager.py:cmd_spawn():L1170 failed 
spawn: "firefox_esr"
[Errno 2] No such file or directory
2020-04-18 23:41:34,538 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=18874375, prop='WM_STATE'), ignoring
2020-04-18 23:42:43,587 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388729, prop='WM_STATE'), ignoring
2020-04-18 23:43:38,338 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388763, prop='WM_STATE'), ignoring
2020-04-19 00:05:22,345 ERROR libqtile manager.py:process_key_event():L347 KB 
command error togroup: No object window in path 'window'
2020-04-19 00:07:49,181 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=10485773, prop='WM_STATE'), ignoring
2020-04-19 00:10:53,673 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop='_NET_WM_VISIBLE_NAME'), ignoring
2020-04-19 00:10:53,674 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop='_NET_WM_NAME'), ignoring
2020-04-19 00:10:53,674 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop=39), ignoring
2020-04-19 00:10:53,674 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop=39), ignoring
2020-04-19 00:10:53,674 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop='_NET_WM_VISIBLE_NAME'), ignoring
2020-04-19 00:10:53,674 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop='_NET_WM_NAME'), ignoring
2020-04-19 00:10:53,675 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop=39), ignoring
2020-04-19 00:10:53,675 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=16777464, prop=39), ignoring
2020-04-19 00:10:53,675 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=16777464, prop='WM_STATE'), ignoring
2020-04-19 00:10:57,337 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=10485773, prop='WM_STATE'), ignoring
2020-04-19 00:12:44,539 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop='_NET_WM_VISIBLE_NAME'), ignoring
2020-04-19 00:12:44,539 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop='_NET_WM_NAME'), ignoring
2020-04-19 00:12:44,539 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop=39), ignoring
2020-04-19 00:12:44,539 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop=39), ignoring
2020-04-19 00:12:44,540 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop='_NET_WM_VISIBLE_NAME'), ignoring
2020-04-19 00:12:44,540 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop='_NET_WM_NAME'), ignoring
2020-04-19 00:12:44,540 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop=39), ignoring
2020-04-19 00:12:44,540 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=25166072, prop=39), ignoring
2020-04-19 00:12:44,540 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=25166072, prop='WM_STATE'), ignoring
2020-04-19 00:12:47,556 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=16777229, prop='WM_STATE'), ignoring
2020-04-19 01:04:14,392 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=23087238, prop='_NET_WM_STATE'), ignoring
2020-04-19 01:04:14,392 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=23087238, prop='_NET_WM_STATE'), ignoring
2020-04-19 01:04:14,392 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=23068675, prop='WM_STATE'), ignoring
2020-04-19 01:04:14,395 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=23087238, prop='WM_CLASS'), ignoring
2020-04-19 01:04:14,396 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=23087238, prop='WM_STATE'), ignoring
2020-04-19 01:04:14,396 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=23087238, prop='WM_CLASS'), ignoring
2020-04-19 01:04:14,396 WARNING libqtile xcbq.py:get_property():L719 X error in 
GetProperty (wid=23087238, prop='WM_PROTOCOLS'), ignoring
2020-04-19 01:04:14,397 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=23087238, prop='WM_STATE'), ignoring
2020-04-19 01:04:25,227 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388874, prop='WM_STATE'), ignoring
2020-04-19 01:04:25,323 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=8388611, prop='WM_STATE'), ignoring
2020-04-19 01:04:33,033 WARNING libqtile xcbq.py:set_property():L689 X error in 
SetProperty (wid=20971533, prop='WM_STATE'), ignoring

Reply via email to