huyz / irssi-colors-solarized

A color theme for irssi using Ethan Schoonover’s Solarized color scheme
http://ethanschoonover.com/solarized
MIT License
145 stars 24 forks source link

Invisible channels #4

Open wei2912 opened 9 years ago

wei2912 commented 9 years ago

When I load up my theme with the following config:

settings = {
  core = {
    real_name = "Ng Wei En";
    user_name = "wei2912";
    nick = "wei2912";
  };
  "fe-text" = { actlist_sort = "refnum"; };
  "perl/core/scripts" = {
    awl_shared_sbar = "OFF";
    awl_viewer = "no";

    ### For Solarized adv_windowlist.pl script
    awl_display_key_active = "%k%2[$Q=$N:$C]%n";
    awl_display_nokey_active = "%k%2[$N:$C]%n";
    awl_display_key = "[$Q:$H$C$S]";
    awl_display_nokey = "[$N:$H$C$S]";

    ### For Solarized trackbar.pl script
    trackbar_style = "%B";
  };
  "fe-common/core" = {
    autolog = "yes";

    # Solarized
    theme = "solarized-universal";
    hilight_color = "= %R";
  };
};

hilights = {
  text = "wei2912";
  color = "%M";
  nick = "yes";
  word = "yes";
}; 

statusbar = {
  default = {
    awl_0 = {
      items = {
        barstart = { priority = "100"; };
        awl_0 = { };
        barend = { priority = "100"; alignment = "right"; };
      };
    };
  };
  items = {
    # Solarized
    lag = "{sb Lag: %m$0-%n}";
    act = "{sb Act: $0-}";
    more = "%k%3-- more --%n";
  };
};

servers = (
  {
    address = "chat.freenode.net";
    chatnet = "fn";
    port = "6697";
    use_ssl = "yes";
    ssl_cert = "~/.irssi/irssi.pem";
    ssl_verify = "yes";
    autoconnect = "yes";
  }
)
;
chatnets = { fn = { type = "IRC"; }; };

channels = (
  { name = "##programming"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#wz2100legacy"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#learnprogramming"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#lpmc"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#perlcafe"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#haskell"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#haskell-beginners"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#apertium"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#Mandarin"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#VoterChat"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#fp101x"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#python"; chatnet = "fn"; autojoin = "yes"; },
  { name = "##math"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#hakyll"; chatnet = "fn"; autojoin = "yes"; },
  { name = "##moepp"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#epoch"; chatnet = "fn"; autojoin = "yes"; },
  { name = "#travis"; chatnet = "fn"; autojoin = "yes"; }
);

logs = { };

The channel list contains a few invisible channels, as seen here:

2014-11-29-233846_1360x768_scrot

How could this be fixed?

areinisc commented 8 years ago

I experience this as well. It seems that the coloring in that bar is different for us than in the screenshots in the README. I see: issue

We see the colors tan, red, black, and white. The README shows colors tan, blue, black, and green.

I can't figure out why that difference exists.