diff options
author | Mateja <mail@matejamaric.com> | 2020-08-30 11:10:45 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-08-30 11:10:45 +0200 |
commit | a340c991e4f3d78d1ab6b3c063b367462e7c2397 (patch) | |
tree | 459934645a52404c7d915921b9c54eb53269780b | |
parent | 358387151d34cc24eddc3b4be18adae3dbc5540a (diff) | |
download | dotfiles-a340c991e4f3d78d1ab6b3c063b367462e7c2397.tar.gz dotfiles-a340c991e4f3d78d1ab6b3c063b367462e7c2397.zip |
qtile config update
-rw-r--r-- | .config/qtile/config.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 645a2f2..732acc3 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -32,7 +32,8 @@ from libqtile.lazy import lazy from libqtile.utils import guess_terminal mod = "mod4" -terminal = guess_terminal() +#terminal = guess_terminal() +terminal = "st" keys = [ # Switch between windows in current stack pane @@ -91,14 +92,14 @@ for i in groups: ]) layouts = [ + layout.MonadTall(), + layout.MonadWide(), layout.Max(), - layout.Stack(num_stacks=2), + #layout.Stack(num_stacks=2), # Try more layouts by unleashing below layouts. # layout.Bsp(), # layout.Columns(), # layout.Matrix(), - # layout.MonadTall(), - # layout.MonadWide(), # layout.RatioTile(), # layout.Tile(), # layout.TreeTab(), @@ -121,12 +122,16 @@ screens = [ widget.GroupBox(), widget.Prompt(), widget.WindowName(), + widget.Chord( chords_colors={ 'launch': ("#ff0000", "#ffffff"), }, name_transform=lambda name: name.upper(), ), +# widget.CapsNumLockIndicator(), +# widget.KeyboardLayout(), + widget.Volume(), # widget.TextBox("default config", name="default"), # widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"), widget.Systray(), |