Add keybindings for switching to tty.

This commit is contained in:
Bartek Stalewski 2023-10-20 23:42:00 +02:00
parent acfe289a23
commit b6f78ef3d4

View File

@ -105,6 +105,12 @@ for i in groups[:10]:
]
)
if qtile.core.name is "wayland":
for i in range(1,7):
keys.extend([
Key(["control", "mod1"], f"f{i}", lazy.core.change_vt(i), desc=f"Switch to VT{i}")
])
layouts = [
layout.Columns(
border_focus='#0094d8',