@@ -44,232 +44,4 @@ programs.tmux = {
4444
4545#### Configuration  
4646
47- To enable plugins set up the ` @dracula-plugins `  option in you ` .tmux.conf `  file, separate plugin by space.
48- The order that you define the plugins will be the order on the status bar left to right.
49- 
50- ``` bash 
51- #  available plugins: battery, cpu-usage, git, gpu-usage, ram-usage, network, network-bandwidth, network-ping, attached-clients, network-vpn, weather, time, spotify-tui, kubernetes-context
52- 
53- set  -g @dracula-plugins " cpu-usage gpu-usage ram-usage" 
54- ``` 
55- 
56- For each plugin is possible to customize background and foreground colors
57- 
58- ``` bash 
59- #  available colors: white, gray, dark_gray, light_purple, dark_purple, cyan, green, orange, red, pink, yellow
60- #  set -g @dracula-[plugin-name]-colors "[background] [foreground]"
61- set  -g @dracula-cpu-usage-colors " pink dark_gray" 
62- ``` 
63- 
64- #### Status bar options  
65- 
66- Enable powerline symbols
67- 
68- ``` bash 
69- set  -g @dracula-show-powerline true 
70- ``` 
71- 
72- Switch powerline symbols
73- 
74- ``` bash 
75- #  for left
76- set  -g @dracula-show-left-sep 
77- 
78- #  for right symbol (can set any symbol you like as seperator)
79- set  -g @dracula-show-right-sep 
80- ``` 
81- 
82- Enable window flags
83- 
84- ``` bash 
85- set  -g @dracula-show-flags true 
86- ``` 
87- 
88- Adjust the refresh rate for the status bar
89- 
90- ``` bash 
91- #  the default is 5, it can accept any number
92- set  -g @dracula-refresh-rate 5
93- ``` 
94- 
95- Switch the left smiley icon
96- 
97- ``` bash 
98- #  it can accept `session`, `smiley`, `window`, or any character.
99- set  -g @dracula-show-left-icon session
100- ``` 
101- 
102- Add padding to the left smiley icon
103- 
104- ``` bash 
105- #  default is 1, it can accept any number and 0 disables padding.
106- set  -g @dracula-left-icon-padding 1
107- ``` 
108- 
109- Enable high contrast pane border
110- 
111- ``` bash 
112- set  -g @dracula-border-contrast true 
113- ``` 
114- 
115- Hide empty plugins
116- 
117- ``` bash 
118- set  -g @dracula-show-empty-plugins false 
119- ``` 
120- 
121- #### cpu-usage options  
122- 
123- Customize label
124- 
125- ``` bash 
126- set  -g @dracula-cpu-usage-label " CPU" 
127- ``` 
128- 
129- Show system load average instead of CPU usage percentage (default)
130- 
131- ``` bash 
132- set  -g @dracula-cpu-display-load true 
133- ``` 
134- 
135- CPU usage percentage (default) - in percentage (output: %)
136- Load average – is the average system load calculated over a given period of time of 1, 5 and 15 minutes (output: x.x x.x x.x)
137- 
138- #### battery options  
139- 
140- Customize label
141- 
142- ``` bash 
143- set  -g @dracula-battery-label " Battery" 
144- ``` 
145- 
146- #### gpu-usage options  
147- 
148- Note, currently only the Linux NVIDIA Proprietary drivers are supported. Nouveau and AMD Graphics Cards support are still under development.
149- 
150- Customize label
151- 
152- ``` bash 
153- set  -g @dracula-gpu-usage-label " GPU" 
154- ``` 
155- 
156- #### ram-usage options  
157- 
158- Customize label
159- 
160- ``` bash 
161- set  -g @dracula-ram-usage-label " RAM" 
162- ``` 
163- 
164- #### network-bandwidth  
165- 
166- You can configure which network interface you want to view the bandwidth,
167- Displaying of the interface name, The interval between each bandwidth update.
168- The most common interfaces name are ` eth0 `  for a wired connection and ` wlan0 `  for a wireless connection.
169- 
170- ``` bash 
171- set  -g @dracula-network-bandwidth eth0
172- set  -g @dracula-network-bandwidth-interval 0
173- set  -g @dracula-network-bandwidth-show-interface true 
174- ``` 
175- 
176- #### network-ping options  
177- 
178- You can configure which server (hostname, IP) you want to ping and at which rate (in seconds). Default is google.com at every 5 seconds.
179- 
180- ``` bash 
181- set  -g @dracula-ping-server " google.com" 
182- set  -g @dracula-ping-rate 5
183- ``` 
184- 
185- #### time options  
186- 
187- Disable timezone
188- 
189- ``` bash 
190- set  -g @dracula-show-timezone false 
191- ``` 
192- 
193- Swap date to day/month
194- 
195- ``` bash 
196- set  -g @dracula-day-month true 
197- ``` 
198- 
199- Enable military time
200- 
201- ``` bash 
202- set  -g @dracula-military-time true 
203- ``` 
204- 
205- #### git options  
206- 
207- Hide details of git changes
208- ``` bash 
209- set  -g @dracula-git-disable-status true 
210- ``` 
211- 
212- Set symbol to use for when branch is up to date with HEAD
213- ``` bash 
214- #  default is ✓. Avoid using non unicode characters that bash uses like $, * and !
215- set  -g @dracula-git-show-current-symbol ✓
216- ``` 
217- 
218- Set symbol to use for when branch diverges from HEAD
219- ``` bash 
220- #  default is unicode !. Avoid bash special characters
221- set  -g @dracula-git-show-diff-symbol ! 
222- ``` 
223- 
224- Set symbol or message to use when the current pane has no git repo
225- ``` bash 
226- #  default is unicode no message
227- set  -g @dracula-git-no-repo-message " " 
228- ``` 
229- 
230- Hide untracked files from being displayed as local changes
231- ``` bash 
232- #  default is false
233- set  -g @dracula-git-no-untracked-files true 
234- ``` 
235- 
236- Show remote tracking branch together with diverge/sync state
237- ``` bash 
238- #  default is false
239- set  -g @dracula-git-show-remote-status true 
240- ``` 
241- 
242- #### weather options  
243- 
244- Switch from default fahrenheit to celsius
245- 
246- ``` bash 
247- set  -g @dracula-show-fahrenheit false 
248- ``` 
249- 
250- Set your location manually
251- 
252- ``` bash 
253- set  -g @dracula-fixed-location " Some City" 
254- ``` 
255- 
256- Hide your location
257- 
258- ``` bash 
259- set  -g @dracula-show-location false 
260- ``` 
261- 
262- #### attached-clients options  
263- 
264- Set the minimum number of clients to show (otherwise, show nothing)
265- 
266- ``` bash 
267- set  -g @dracula-clients-minimum 1
268- ``` 
269- 
270- Set the label when there is one client, or more than one client
271- 
272- ``` bash 
273- set  -g @dracula-clients-singular client
274- set  -g @dracula-clients-plural clients
275- ``` 
47+ The configuration options are documented on [ our GitHub] ( https://github.com/dracula/tmux/blob/master/docs/CONFIG.md ) 
0 commit comments