From 6aaea9cf4b283d41016e60735f52c8feb3cd0c9e Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 22 Aug 2023 19:46:15 +0100 Subject: Initial commit --- .config/qtile/config.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .config/qtile/config.py (limited to '.config/qtile/config.py') diff --git a/.config/qtile/config.py b/.config/qtile/config.py new file mode 100644 index 0000000..122d63a --- /dev/null +++ b/.config/qtile/config.py @@ -0,0 +1,43 @@ +# Qtile Config File +# http://www.qtile.org/ + +# Justine Smithies +# https://github.com/justinesmithies/qtile-wayland-dotfiles + +from typing import List # noqa: F401 +import hooks +from keys import mod, keys, home +from workspaces import workspaces +from groups import groups +from layouts import layouts, floating_layout +from widgets import widget_defaults, extension_defaults +from screens import screens +from mouse import mouse +from libqtile.backend.wayland import InputConfig + +# Configure input devices + +wl_input_rules = { + "type:keyboard": InputConfig( + kb_layout='us', + ), +} + +dgroups_key_binder = None +dgroups_app_rules = [] # type: List +follow_mouse_focus = True +bring_front_click = False +cursor_warp = True +auto_fullscreen = True +focus_on_window_activation = "smart" +reconfigure_screens = True + +# XXX: Gasp! We're lying here. In fact, nobody really uses or cares about this +# string besides java UI toolkits; you can see several discussions on the +# mailing lists, GitHub issues, and other WM documentation that suggest setting +# this string if your java app doesn't work correctly. We may as well just lie +# and say that we're a working one by default. +# +# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in +# java that happens to be on java's whitelist. +wmname = "Qtile" -- cgit v1.2.3