aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/config.py13
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(),