Unable to spawn extension.WindowList
See original GitHub issueIssue description
When I try to launch the WindowList extension it fails and I get an error.
Qtile version
0.18.1
Stack traces
and the stacktrace:
2021-09-30 18:33:24,691 ERROR libqtile manager.py:process_key_event():L361 KB command error run_extension: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/libqtile/command/interface.py", line 313, in call
return SUCCESS, cmd(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/libqtile/core/manager.py", line 1525, in cmd_run_extension
extension.run()
File "/usr/lib/python3.9/site-packages/libqtile/extension/window_list.py", line 58, in run
out = super().run(items=self.item_to_win.keys())
File "/usr/lib/python3.9/site-packages/libqtile/extension/dmenu.py", line 96, in run
proc = super().run()
File "/usr/lib/python3.9/site-packages/libqtile/extension/base.py", line 99, in run
return Popen(self.configured_command, stdout=PIPE, stdin=PIPE)
File "/usr/lib/python3.9/subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.9/subprocess.py", line 1754, in _execute_child
self.pid = _posixsubprocess.fork_exec(
TypeError: expected str, bytes or os.PathLike object, not list
Configuration
The config is:
from libqtile import extension
from libqtile.lazy import lazy
keys.append(
Key([mod], "semicolon",
lazy.run_extension(extension.WindowList(
dmenu_prompt = 'Switch to:',
dmenu_command = '/usr/bin/dmenu',
))))
My dmenu supports the height / -h option.
Issue Analytics
- State:
- Created 2 years ago
- Comments:22 (12 by maintainers)
Top Results From Across the Web
Qtile doesn't spawn dmenu · Issue #1931 - GitHub
Issue description Qtile doesn't spawn dmenu even after installing everything required. I have tried running dmenu_run in the terminal and it ...
Read more >Fix Spawn extension (from_trunk_GMSC, 206, 1) exited non ...
Dear, I have connect SIP with telco and i have proplem: Show sip pees is OK but when dail shortcode 206 then have...
Read more >2026622 – gnome-shell Error connecting to Nautilus
Just a note that the desktop-icons extension doesn't work with GNOME 40+, so can't be tested with recent Fedoras, but the dbus-send reproducer...
Read more >Spawn extension - FreePBX Community Forums
Hello i got a new message in asterisk -rvvv when i was monitoring it said == Spawn extension (from-sip-external, h, 1) exited non-zero...
Read more >Gnome Shell keeps crashing / Applications & Desktop ...
No, it is not creating core dump. It always crash when I'm trying to open project with pycharm. It is only problematic on...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Cool. Yes, that’s the problem.
This isn’t the same as bar colours which can be a gradient. This is a value which gets passed to dmenu so qtile isn’t responsible for drawing it.
here is the problem. When I wrote that code, I thought that foreground and background can be color gradients.
again, thank you for your help.