mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
updates
This commit is contained in:
parent
a13bfb05e5
commit
cbbfe5f1d7
1 changed files with 13 additions and 13 deletions
|
|
@ -41,7 +41,7 @@ keys = [
|
|||
Key([mod], "space", lazy.window.toggle_floating(), desc="Toggle floating on the focused window"),
|
||||
Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"),
|
||||
Key([mod, "shift"], "q", lazy.shutdown(), desc="Shutdown Qtile"),
|
||||
Key([mod], "r", lazy.spawn("wmenu-run -f \"JetBrainsMono NF 12\" -N #000000 -b"), desc="Spawn a command using wmenu"),
|
||||
Key([mod], "r", lazy.spawn("wmenu-run -f \"Ubuntu Mono 12\" -N #000000 -b"), desc="Spawn a command using wmenu"),
|
||||
Key([mod], "Print", lazy.spawn("/home/coast/.local/src/local/bin/screenie-wlr")),
|
||||
]
|
||||
|
||||
|
|
@ -74,41 +74,41 @@ for i in groups:
|
|||
)
|
||||
|
||||
layouts = [
|
||||
layout.MonadTall(font = "JetBrains Mono Nerd Font", fontsize = 10, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
layout.MonadTall(font = "Ubuntu Mono", fontsize = 14, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
# Try more layouts by unleashing below layouts.
|
||||
# layout.Stack(num_stacks=2),
|
||||
# layout.Bsp(),
|
||||
# layout.Matrix(),
|
||||
layout.MonadWide(font = "JetBrains Mono Nerd Font", fontsize = 10, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
layout.RatioTile(font = "JetBrains Mono Nerd Font", fontsize = 10, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
layout.MonadWide(font = "Ubuntu Mono", fontsize = 14, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
layout.RatioTile(font = "Ubuntu Mono", fontsize = 14, margin = 8, border_focus=["#454545"], border_width=4, border_normal=["#1c1c1c"]),
|
||||
# layout.Tile(),
|
||||
# layout.TreeTab(),
|
||||
# layout.VerticalTile(),
|
||||
# layout.Zoomy(),
|
||||
]
|
||||
|
||||
widget_defaults = dict(font="sans", fontsize=12, padding=3)
|
||||
widget_defaults = dict(font="sans", fontsize=14, padding=3)
|
||||
extension_defaults = widget_defaults.copy()
|
||||
|
||||
screens = [
|
||||
Screen(
|
||||
bottom=bar.Bar(
|
||||
[
|
||||
widget.GroupBox(font = "JetBrains Mono Nerd Font", margin_y = 5, margin_x = 5, padding_y = 0, padding_x = 2, borderwidth = 3, rounded = False, highlight_method = "line", inactive = ["#ffffff"], ),
|
||||
widget.TextBox(text = '|', font = "JetBrains Mono Nerd Font", padding = 2,),
|
||||
widget.CurrentLayout(font = "JetBrains Mono Nerd Font",),
|
||||
widget.TextBox(text = '|', font = "JetBrains Mono Nerd Font", padding = 2,),
|
||||
widget.GroupBox(font = "Ubuntu Mono", margin_y = 5, fontsize = 14, margin_x = 5, padding_y = 0, padding_x = 2, borderwidth = 3, rounded = False, highlight_method = "line", inactive = ["#ffffff"], ),
|
||||
widget.TextBox(text = '|', font = "Ubuntu Mono", padding = 2,),
|
||||
widget.CurrentLayout(font = "Ubuntu Mono",),
|
||||
widget.TextBox(text = '|', font = "Ubuntu Mono", padding = 2,),
|
||||
widget.Prompt(),
|
||||
widget.WindowName(font = "JetBrains Mono Nerd Font"),
|
||||
widget.WindowName(font = "Ubuntu Mono"),
|
||||
widget.Chord(
|
||||
chords_colors={
|
||||
"launch": ("#ff0000", "#ffffff"),
|
||||
},
|
||||
name_transform=lambda name: name.upper()),
|
||||
widget.StatusNotifier(),
|
||||
widget.TextBox(text = '|', font = "JetBrains Mono Nerd Font", padding = 2,),
|
||||
widget.Clock(format="%I:%M %p", font = "JetBrains Mono Nerd Font", fontsize = 14, padding = 2),
|
||||
widget.QuickExit(font = "JetBrains Mono Nerd Font", padding = 2, rounded = False, fontsize = 14),
|
||||
widget.TextBox(text = '|', font = "Ubuntu Mono", padding = 2,),
|
||||
widget.Clock(format="%I:%M %p", font = "Ubuntu Mono", fontsize = 14, padding = 2),
|
||||
widget.QuickExit(font = "Ubuntu Mono", padding = 2, rounded = False, fontsize = 14),
|
||||
],
|
||||
24,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue