diff --git a/qtile/.config/qtile/config.py b/qtile/.config/qtile/config.py index 94d3d45..54b4a08 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/qtile/config.py @@ -109,16 +109,19 @@ for i in groups: #endregion #region layouts +focus_color = '#bd93f9' layouts = [ layout.MonadTall( - border_focus = '#00ff00', + border_focus = focus_color, border_width = 2, new_at_current = True, ), - layout.Floating(), + layout.Floating( + border_focus = focus_color, + ), layout.Max(), layout.MonadWide( - border_focus = '#00ff00', + border_focus = focus_color, border_width = 2, new_at_current = True, ), diff --git a/termite/.config/termite/config b/termite/.config/termite/config new file mode 100644 index 0000000..aa704f3 --- /dev/null +++ b/termite/.config/termite/config @@ -0,0 +1,39 @@ +[colors] + +# special +foreground = #f8f8f2 +foreground_bold = #f8f8f2 +cursor = #f8f8f2 +background = rgba(40, 42, 54, 1) + +# black +color0 = #000000 +color8 = #4d4d4d + +# red +color1 = #ff5555 +color9 = #ff6e67 + +# green +color2 = #50fa7b +color10 = #5af78e + +# yellow +color3 = #f1fa8c +color11 = #f4f99d + +# blue +color4 = #bd93f9 +color12 = #caa9fa + +# magenta +color5 = #ff79c6 +color13 = #ff92d0 + +# cyan +color6 = #8be9fd +color14 = #9aedfe + +# white +color7 = #bfbfbf +color15 = #e6e6e6 \ No newline at end of file