Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request thestinger#631 from carloabelli/issue245
Browse files Browse the repository at this point in the history
Add bold_is_bright option
  • Loading branch information
jelly authored Nov 11, 2018
2 parents 3e2c10f + 6855a9b commit b3e9235
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[options]
#allow_bold = true
#audible_bell = false
#bold_is_bright = true
#clickable_url = true
#dynamic_title = true
font = Monospace 9
Expand Down
2 changes: 2 additions & 0 deletions man/termite.config.5
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Allow the output of bold characters when the bold escape sequence
appears
.IP \fIaudible_bell\fR
Have the terminal beep on the terminal bell.
.IP \fIbold_is_bright\fR
Display bold text in bright colors.
.IP \fIbrowser\fR
Set the default browser for opening links. If its not set,
\fI$BROWSER\fR is read. If that's not set, url hints will be disabled.
Expand Down
3 changes: 3 additions & 0 deletions termite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1476,6 +1476,9 @@ static void set_config(GtkWindow *window, VteTerminal *vte, GtkWidget *scrollbar
vte_terminal_search_set_wrap_around(vte, cfg_bool("search_wrap", TRUE));
#if VTE_CHECK_VERSION (0, 49, 1)
vte_terminal_set_allow_hyperlink(vte, cfg_bool("hyperlinks", FALSE));
#endif
#if VTE_CHECK_VERSION (0, 51, 2)
vte_terminal_set_bold_is_bright(vte, cfg_bool("bold_is_bright", TRUE));
#endif
info->dynamic_title = cfg_bool("dynamic_title", TRUE);
info->urgent_on_bell = cfg_bool("urgent_on_bell", TRUE);
Expand Down

0 comments on commit b3e9235

Please sign in to comment.