mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-10 18:11:13 +10:00
Playing with my qtile config.
This commit is contained in:
+19
-21
@@ -83,13 +83,13 @@ def init_keys():
|
|||||||
lazy.shutdown() # Shutdown Qtile
|
lazy.shutdown() # Shutdown Qtile
|
||||||
),
|
),
|
||||||
Key([mod], "w",
|
Key([mod], "w",
|
||||||
lazy.to_screen(2) # Keyboard focus screen(0)
|
lazy.to_screen(0) # Keyboard focus screen(0)
|
||||||
),
|
),
|
||||||
Key([mod], "e",
|
Key([mod], "e",
|
||||||
lazy.to_screen(0) # Keyboard focus screen(1)
|
lazy.to_screen(1) # Keyboard focus screen(1)
|
||||||
),
|
),
|
||||||
Key([mod], "r",
|
Key([mod], "r",
|
||||||
lazy.to_screen(1) # Keyboard focus screen(2)
|
lazy.to_screen(2) # Keyboard focus screen(2)
|
||||||
),
|
),
|
||||||
Key([mod, "control"], "k",
|
Key([mod, "control"], "k",
|
||||||
lazy.layout.section_up() # Move up a section in treetab
|
lazy.layout.section_up() # Move up a section in treetab
|
||||||
@@ -261,13 +261,14 @@ def init_colors():
|
|||||||
##### GROUPS #####
|
##### GROUPS #####
|
||||||
|
|
||||||
def init_group_names():
|
def init_group_names():
|
||||||
return [("DEV", {'layout': 'max'}),
|
return [("WWW", {'layout': 'monadtall'}),
|
||||||
("WWW", {'layout': 'max'}),
|
("DEV", {'layout': 'monadtall'}),
|
||||||
("SYS", {'layout': 'monadtall'}),
|
("SYS", {'layout': 'monadtall'}),
|
||||||
("DOC", {'layout': 'monadtall'}),
|
("DOC", {'layout': 'monadtall'}),
|
||||||
("VBOX", {'layout': 'floating'}),
|
("VBOX", {'layout': 'monadtall'}),
|
||||||
("CHAT", {'layout': 'bsp'}),
|
("CHAT", {'layout': 'monadtall'}),
|
||||||
("MEDIA", {'layout': 'monadtall'}),
|
("MUS", {'layout': 'monadtall'}),
|
||||||
|
("VID", {'layout': 'monadtall'}),
|
||||||
("GFX", {'layout': 'floating'})]
|
("GFX", {'layout': 'floating'})]
|
||||||
|
|
||||||
def init_groups():
|
def init_groups():
|
||||||
@@ -290,10 +291,17 @@ def init_border_args():
|
|||||||
return {"border_width": 2}
|
return {"border_width": 2}
|
||||||
|
|
||||||
def init_layouts():
|
def init_layouts():
|
||||||
return [layout.Max(**layout_theme),
|
return [#layout.MonadWide(**layout_theme),
|
||||||
|
#layout.Bsp(**layout_theme),
|
||||||
|
#layout.Stack(stacks=2, **layout_theme),
|
||||||
|
#layout.Columns(**layout_theme),
|
||||||
|
#layout.RatioTile(**layout_theme),
|
||||||
|
#layout.VerticalTile(**layout_theme),
|
||||||
|
#layout.Tile(shift_windows=True, **layout_theme),
|
||||||
|
#layout.Matrix(**layout_theme),
|
||||||
|
#layout.Zoomy(**layout_theme),
|
||||||
layout.MonadTall(**layout_theme),
|
layout.MonadTall(**layout_theme),
|
||||||
layout.MonadWide(**layout_theme),
|
layout.Max(**layout_theme),
|
||||||
layout.Bsp(**layout_theme),
|
|
||||||
layout.TreeTab(
|
layout.TreeTab(
|
||||||
font = "Ubuntu",
|
font = "Ubuntu",
|
||||||
fontsize = 10,
|
fontsize = 10,
|
||||||
@@ -309,16 +317,6 @@ def init_layouts():
|
|||||||
panel_width = 320,
|
panel_width = 320,
|
||||||
**layout_theme
|
**layout_theme
|
||||||
),
|
),
|
||||||
layout.Slice(side="left", width=192, name="gimp", role="gimp-toolbox",
|
|
||||||
fallback=layout.Slice(side="right", width=256, role="gimp-dock",
|
|
||||||
fallback=layout.Stack(num_stacks=1, **border_args))),
|
|
||||||
#layout.Stack(stacks=2, **layout_theme),
|
|
||||||
#layout.Columns(**layout_theme),
|
|
||||||
#layout.RatioTile(**layout_theme),
|
|
||||||
#layout.VerticalTile(**layout_theme),
|
|
||||||
#layout.Tile(shift_windows=True, **layout_theme),
|
|
||||||
#layout.Matrix(**layout_theme),
|
|
||||||
#layout.Zoomy(**layout_theme),
|
|
||||||
layout.Floating(**layout_theme)]
|
layout.Floating(**layout_theme)]
|
||||||
|
|
||||||
##### WIDGETS #####
|
##### WIDGETS #####
|
||||||
|
|||||||
Reference in New Issue
Block a user