Hello,
I am trying to add a Key combination that should launch pcmanfm
when I press mod+shift+number3. I have added this line in ~/.config/qtile/modules/keys.py
:
Key([mod, "shift"], "3", lazy.spawn("pcmanfm"), desc="File manager"),
and then restarted Qtile, after executing the above combination there is nothing happening. I do not see any errors in ~/.local/share/qtile/qtile.log
.
Any ideas?
xircon
January 14, 2022, 7:13pm
2
Isn’t it defined to move window to desktop 3? Let me check my config BRB. Yes - in groups.py:
Key([mod, "shift"],
i.name,
lazy.window.togroup(i.name, switch_group=True),
desc="Switch to & move focused window to group {}".format(i.name)),
1 Like
ah, that makes sense! I forgot about that combination. Thank you
1 Like
system
Closed
January 16, 2022, 7:16pm
4
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.