mirror of
				https://github.com/Tha14/toxic.git
				synced 2025-10-31 01:06:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SAMPLE TOXIC CONFIGURATION
 | |
| // USES LIBCONFIG-ACCEPTED SYNTAX
 | |
| 
 | |
| ui = {
 | |
|   // true to enable timestamps, false to disable
 | |
|   timestamps=true;
 | |
| 
 | |
|   // true to enable terminal alerts on messages, false to disable
 | |
|   alerts=true;
 | |
| 
 | |
|   // true to use native terminal colours, false to use toxic default colour theme
 | |
|   native_colors=false;
 | |
| 
 | |
|   // true to enable autologging, false to disable
 | |
|   autolog=false;
 | |
| 
 | |
|   // 24 or 12 hour time
 | |
|   time_format=24;
 | |
| 
 | |
|   // true to show you when others are typing a message in 1-on-1 chats
 | |
|   show_typing_other=true;
 | |
| 
 | |
|   // true to show others when you're typing a message in 1-on-1 chats
 | |
|   show_typing_self=true;
 | |
| 
 | |
|   // maximum lines for chat window history
 | |
|   history_size=700;
 | |
| };
 | |
| 
 | |
| audio = {
 | |
|   // preferred audio input device; numbers correspond to /lsdev in
 | |
|   input_device=2;
 | |
| 
 | |
|   // preferred audio output device; numbers correspond to /lsdev out
 | |
|   output_device=0;
 | |
|   
 | |
|   // default VAD treshold; float (recommended values are around 40)
 | |
|   VAD_treshold=40.0;
 | |
| };
 | |
| 
 | |
| tox = {
 | |
|   // where to store received files
 | |
|   //download_path="/home/USERNAME/Downloads/";
 | |
| };
 | |
| 
 | |
| // To disable a sound set the path to "silent"
 | |
| sounds = {
 | |
|   error="__DATADIR__/sounds/Error.wav";
 | |
|   self_log_in="__DATADIR__/sounds/LogIn.wav";
 | |
|   self_log_out="__DATADIR__/sounds/LogOut.wav";
 | |
|   user_log_in="__DATADIR__/sounds/ContactLogsIn.wav";
 | |
|   user_log_out="__DATADIR__/sounds/ContactLogsOut.wav";
 | |
|   call_incoming="__DATADIR__/sounds/IncomingCall.wav";
 | |
|   call_outgoing="__DATADIR__/sounds/OutgoingCall.wav";
 | |
|   generic_message="__DATADIR__/sounds/NewMessage.wav";
 | |
|   transfer_pending="__DATADIR__/sounds/TransferPending.wav";
 | |
|   transfer_completed="__DATADIR__/sounds/TransferComplete.wav";
 | |
| };
 | |
| 
 | |
| // Currently supported: Ctrl modified keys, Tab, PAGEUP and PAGEDOWN (case insensitive)
 | |
| // Note: All printable keys register as input
 | |
| keys = {
 | |
| 	next_tab="Ctrl+P";
 | |
| 	prev_tab="Ctrl+O";
 | |
| 	scroll_line_up="PAGEUP";
 | |
| 	scroll_line_down="PAGEDOWN";
 | |
| 	half_page_up="Ctrl+F";
 | |
| 	half_page_down="Ctrl+V";
 | |
| 	page_bottom="Ctrl+H";
 | |
| 	peer_list_up="Ctrl+[";
 | |
| 	peer_list_down="Ctrl+]";
 | |
| };
 | |
| 
 |