summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-11-12 18:33:41 +0200
committerThanosApollo <[email protected]>2022-11-12 18:33:41 +0200
commit44551f8abe9ad063cfd570beadbce9b5d6691334 (patch)
tree93d6f2c9fe3c985c90bbfeb8ebe105728b868004
parent72a251dc61c6b81a9313d26819e4f1b0a0d30ae5 (diff)
Add Treetab, redo keys
-rw-r--r--.config/qtile/config.py14
-rw-r--r--.config/qtile/keys.py12
2 files changed, 18 insertions, 8 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 75dbec4..522629c 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -56,10 +56,20 @@ layouts = [
layout.MonadTall(**layout_theme),
# layout.MonadWide(**layout_theme),
# layout.Matrix(**layout_theme),
- # layout.Bsp(**layout_theme),
+ #layout.Bsp(**layout_theme),
layout.Floating(**layout_theme),
# layout.RatioTile(**layout_theme),
- layout.Max(**layout_theme)
+ #layout.Max(**layout_theme),
+ #layout.Spiral(**layout_theme),
+ layout.TreeTab(bg_color=dracula["bg"],
+ fontshadow=dracula["green"],
+ active_bg=dracula["purple"],
+ active_fg=dracula["cyan"],
+ inactive_fg=dracula["fg"],
+ inactive_bg=dracula["bg"],
+ font="JetBrains Mono",
+ section_fontsize=14),
+ #layout.Zoomy(**layout_theme),
]
# Widgets
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py
index 33ca018..dd48118 100644
--- a/.config/qtile/keys.py
+++ b/.config/qtile/keys.py
@@ -65,21 +65,21 @@ class MyKeys():
lazy.layout.move_right(),
),
# Window controls
- Key([self.mod], "j",
+ Key([self.mod], "n",
lazy.layout.down(),
),
- Key([self.mod], "k",
+ Key([self.mod], "b",
lazy.layout.up(),
),
- Key([self.mod, "shift"], "j",
+ Key([self.mod, "shift"], "n",
lazy.layout.shuffle_down(),
lazy.layout.section_down(),
),
- Key([self.mod, "shift"], "k",
+ Key([self.mod, "shift"], "b",
lazy.layout.shuffle_up(),
lazy.layout.section_up(),
),
- Key([self.mod], "h",
+ Key([self.mod], "s",
lazy.layout.shrink(),
lazy.layout.decrease_nmaster(),
),
@@ -87,7 +87,7 @@ class MyKeys():
lazy.layout.grow(),
lazy.layout.increase_nmaster(),
),
- Key([self.mod], "n",
+ Key([self.mod], "o",
lazy.layout.normalize(),
),
Key([self.mod], "m",