diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index a62d44e..a018a91 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -68,7 +68,7 @@ window: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. - opacity: 0.8 + opacity: 0.7 # Startup Mode (changes require restart) # @@ -185,10 +185,11 @@ font: #draw_bold_text_with_bright_colors: false # Colors (Tomorrow Night) -#colors: +colors: # Default colors - #primary: + primary: # background: '#1d1f21' + background: '#000000' # foreground: '#c5c8c6' # Bright and dim foreground colors diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index 8797d6b..10fef05 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ diff --git a/qtile/config.py b/qtile/config.py index c0b10b0..8e591b0 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -103,7 +103,11 @@ for i in groups: ) layouts = [ - layout.Columns(border_focus_stack=["#d75f5f", "#8f3d3d"], border_width=1, margin=10), + layout.Columns( + border_focus_stack=["#ffffff", "#333333"], + border_width=1, + margin=10 + ), layout.Max(), # Try more layouts by unleashing below layouts. # layout.Stack(num_stacks=2), @@ -129,7 +133,7 @@ screens = [ Screen( top=bar.Bar( [ - widget.CurrentLayout(), +# widget.CurrentLayout(), widget.GroupBox(), widget.Prompt(), widget.WindowName(), @@ -139,8 +143,8 @@ screens = [ }, name_transform=lambda name: name.upper(), ), - widget.TextBox("default config", name="default"), - widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"), + # widget.TextBox("default config", name="default"), + # widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"), # NB Systray is incompatible with Wayland, consider using StatusNotifier instead # widget.StatusNotifier(), widget.Systray(), @@ -148,8 +152,9 @@ screens = [ widget.QuickExit(), ], 24, - # border_width=[2, 0, 2, 0], # Draw top and bottom borders - # border_color=["ff00ff", "000000", "ff00ff", "000000"] # Borders are magenta + opacity=0.7, + border_width=[2, 0, 2, 0], # Draw top and bottom borders + # border_color=["000000", "000000", "ffffff", "000000"] # Borders are magenta ), ), ]