Advertisement
bluebyt

pixdecor_patch_color

May 12th, 2024
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. diff --git a/src/deco-theme.cpp b/src/deco-theme.cpp
  2. index 2d146a7..92c9a88 100644
  3. --- a/src/deco-theme.cpp
  4. +++ b/src/deco-theme.cpp
  5. @@ -35,22 +35,22 @@ decoration_theme_t::~decoration_theme_t()
  6.  
  7.  void decoration_theme_t::update_colors(void)
  8.  {
  9. -    if (!read_colour("theme_selected_bg_color", fg))
  10. +    //if (!read_colour("theme_selected_bg_color", fg))
  11.      {
  12.          fg = wf::color_t(fg_color);
  13.      }
  14.  
  15. -    if (!read_colour("theme_selected_fg_color", fg_text))
  16. +    //if (!read_colour("theme_selected_fg_color", fg_text))
  17.      {
  18.          fg_text = wf::color_t(fg_text_color);
  19.      }
  20.  
  21. -    if (!read_colour("theme_unfocused_bg_color", bg))
  22. +    //if (!read_colour("theme_unfocused_bg_color", bg))
  23.      {
  24.          bg = wf::color_t(bg_color);
  25.      }
  26.  
  27. -    if (!read_colour("theme_unfocused_fg_color", bg_text))
  28. +    //if (!read_colour("theme_unfocused_fg_color", bg_text))
  29.      {
  30.          bg_text = wf::color_t(bg_text_color);
  31.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement