├── .gitignore ├── README.md ├── TODO.md ├── config.py └── xinitrc /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | config.py.migrate.bak 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/qtile-config/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/qtile-config/HEAD/TODO.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/qtile-config/HEAD/config.py -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/qtile-config/HEAD/xinitrc --------------------------------------------------------------------------------