config.py

from typing import List # noqa: F401 from libqtile import bar, layout, widget, hook from libqtile.config import Click, Drag, Group, Key, Screen, Match from libqtile.lazy import lazy mod = "mod4" terminal = "kitty" primary = [mod] secondary = [mod, "shift"] tertiary = [mod, "control", "shift"] keys = [ Key(primary, "n", lazy.spawncmd(),), Key(primary, "Tab", lazy.layout.next(),), Key(primary, "Return", lazy.spawn(terminal),), # moves the focus Key(primary, "s", lazy.layout.down(),), Key(primary, "w", lazy.layout.up(),), Key(primary, "a", lazy.layout.left(),), Key(primary, "d", lazy....

3 min · Wyatt Osterling

main.nix

{config, pkgs, ...}:{ home.file = { qtile = { source = ./config.py; target = "./.config/qtile/config.py"; }; }; }

1 min · Wyatt Osterling