1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 01:06:36 +02:00

Add config man entries for colour scheme options

This commit is contained in:
jfreegman
2020-12-05 20:43:21 -05:00
parent eb964b64c2
commit b77bff35a1
3 changed files with 50 additions and 18 deletions

View File

@ -9,31 +9,31 @@ ui = {
alerts=true;
// Output a bell when receiving a message (see manpage)
bell_on_message=true
bell_on_message=true;
// Output a bell when receiving a filetransfer (see manpage)
bell_on_filetrans=true
bell_on_filetrans=true;
// Don't output a bell when a filetransfer was accepted (see manpage)
bell_on_filetrans_accept=false
bell_on_filetrans_accept=false;
// Output a bell when receiving a group/call invite (see manpage)
bell_on_invite=true
bell_on_invite=true;
// true to use native terminal colours, false to use toxic default colour theme
native_colors=false;
// set background color of chat status bars (black, white, red, green, blue, cyan, yellow, magenta)
color_bar_bg = "blue";
color_bar_bg="blue";
// set foreground (text) color of chat status bars (black, white, red, green, blue, cyan, yellow, magenta)
color_bar_fg = "white";
color_bar_fg="white";
// set foreground accent color of chat status bars (black, white, red, green, blue, cyan, yellow, magenta)
color_bar_accent = "cyan";
color_bar_accent="cyan";
// set foreground notify (and typing) color in chat status bar (black, white, red, green, blue, cyan, yellow, magenta)
color_bar_notify = "yellow";
color_bar_notify="yellow";
// true to enable autologging, false to disable
autolog=false;
@ -68,10 +68,10 @@ ui = {
// time in milliseconds to display a notification
notification_timeout=6000;
// Indicator for display when someone connects or joins a group.
// Indicator for display when someone connects or joins a group
line_join="-->";
// Indicator for display when someone disconnects or leaves a group.
// Indicator for display when someone disconnects or leaves a group
line_quit="<--";
// Indicator for alert messages.
@ -143,6 +143,6 @@ keys = {
half_page_up="Ctrl+F";
half_page_down="Ctrl+V";
page_bottom="Ctrl+H";
toggle_peerlist="Ctrl+b";
toggle_peerlist="Ctrl+B";
toggle_paste_mode="Ctrl+T";
};