Skip to content

Commit

Permalink
add bold to newsboat listfocus
Browse files Browse the repository at this point in the history
  • Loading branch information
pmihaly committed Jun 16, 2024
1 parent 0b146b7 commit ae26578
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions use-cases/style/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,20 @@ in
};
};

programs.newsboat.extraConfig = builtins.readFile (
pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "newsboat";
rev = "be3d0ee1ba0fc26baf7a47c2aa7032b7541deb0f";
hash = "sha256-czvR3bVZ0NfBmuu0JixalS7B1vf1uEGSTSUVVTclKxI=";
}
+ /themes/dark
);

programs.newsboat.extraConfig =
(builtins.readFile (
pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "newsboat";
rev = "be3d0ee1ba0fc26baf7a47c2aa7032b7541deb0f";
hash = "sha256-czvR3bVZ0NfBmuu0JixalS7B1vf1uEGSTSUVVTclKxI=";
}
+ /themes/dark
))
+ ''
color listfocus default color0 bold
color listfocus_unread color2 color0 bold
'';
}

];
Expand Down

0 comments on commit ae26578

Please sign in to comment.