@heyitsiveen/dotfiles 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +176 -0
  3. package/dist/index.mjs +1445 -0
  4. package/dotfiles/macos/.claude/CLAUDE.md +13 -0
  5. package/dotfiles/macos/.claude/settings.json +38 -0
  6. package/dotfiles/macos/.claude.json +32 -0
  7. package/dotfiles/macos/.config/bat/config +27 -0
  8. package/dotfiles/macos/.config/bat/themes/Vercel.tmTheme +308 -0
  9. package/dotfiles/macos/.config/bat/themes/Vesper.tmTheme +357 -0
  10. package/dotfiles/macos/.config/btop/btop.conf +272 -0
  11. package/dotfiles/macos/.config/btop/themes/Solarized_Dark.theme +89 -0
  12. package/dotfiles/macos/.config/btop/themes/Vercel.theme +89 -0
  13. package/dotfiles/macos/.config/btop/themes/Vesper.theme +89 -0
  14. package/dotfiles/macos/.config/fish/conf.d/00-platform.fish +19 -0
  15. package/dotfiles/macos/.config/fish/conf.d/10-homebrew.fish +33 -0
  16. package/dotfiles/macos/.config/fish/conf.d/20-environment.fish +12 -0
  17. package/dotfiles/macos/.config/fish/conf.d/30-aliases.fish +52 -0
  18. package/dotfiles/macos/.config/fish/conf.d/40-fzf.fish +120 -0
  19. package/dotfiles/macos/.config/fish/conf.d/50-tools.fish +51 -0
  20. package/dotfiles/macos/.config/fish/conf.d/60-tmux.fish +19 -0
  21. package/dotfiles/macos/.config/fish/conf.d/70-tide.fish +31 -0
  22. package/dotfiles/macos/.config/fish/config.fish +30 -0
  23. package/dotfiles/macos/.config/fish/functions/_tide_palette_heyitsiveen.fish +101 -0
  24. package/dotfiles/macos/.config/fish/functions/_tide_palette_vercel.fish +94 -0
  25. package/dotfiles/macos/.config/fish/functions/_tide_palette_vesper.fish +100 -0
  26. package/dotfiles/macos/.config/fish/functions/backup.fish +43 -0
  27. package/dotfiles/macos/.config/fish/functions/fish_greeting.fish +5 -0
  28. package/dotfiles/macos/.config/fish/functions/reload-fish.fish +4 -0
  29. package/dotfiles/macos/.config/fish/functions/tide_palette.fish +21 -0
  30. package/dotfiles/macos/.config/ghostty/config +46 -0
  31. package/dotfiles/macos/.config/nvim/.neoconf.json +15 -0
  32. package/dotfiles/macos/.config/nvim/init.lua +2 -0
  33. package/dotfiles/macos/.config/nvim/lazy-lock.json +42 -0
  34. package/dotfiles/macos/.config/nvim/lazyvim.json +11 -0
  35. package/dotfiles/macos/.config/nvim/lua/config/autocmds.lua +8 -0
  36. package/dotfiles/macos/.config/nvim/lua/config/keymaps.lua +21 -0
  37. package/dotfiles/macos/.config/nvim/lua/config/lazy.lua +72 -0
  38. package/dotfiles/macos/.config/nvim/lua/config/options.lua +13 -0
  39. package/dotfiles/macos/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  40. package/dotfiles/macos/.config/nvim/lua/plugins/editor.lua +366 -0
  41. package/dotfiles/macos/.config/nvim/lua/plugins/example.lua +197 -0
  42. package/dotfiles/macos/.config/nvim/lua/plugins/mason.lua +11 -0
  43. package/dotfiles/macos/.config/nvim/lua/plugins/oxc.lua +64 -0
  44. package/dotfiles/macos/.config/nvim/lua/plugins/ui.lua +123 -0
  45. package/dotfiles/macos/.config/nvim/stylua.toml +3 -0
  46. package/dotfiles/macos/.config/ripgrep/config +9 -0
  47. package/dotfiles/macos/.config/tmux/STATUSBAR REFERENCE.md +1183 -0
  48. package/dotfiles/macos/.config/tmux/keybinds.conf +124 -0
  49. package/dotfiles/macos/.config/tmux/notifications.conf +39 -0
  50. package/dotfiles/macos/.config/tmux/pane.conf +33 -0
  51. package/dotfiles/macos/.config/tmux/popup-window.conf +27 -0
  52. package/dotfiles/macos/.config/tmux/statusbar.conf +281 -0
  53. package/dotfiles/macos/.config/tmux/tmux.conf +94 -0
  54. package/dotfiles/macos/.config/wezterm/wezterm.lua +143 -0
  55. package/dotfiles/windows/.claude/CLAUDE.md +13 -0
  56. package/dotfiles/windows/.claude/settings.json +38 -0
  57. package/dotfiles/windows/.claude.json +32 -0
  58. package/dotfiles/windows/.config/bat/config +27 -0
  59. package/dotfiles/windows/.config/bat/themes/Vercel.tmTheme +308 -0
  60. package/dotfiles/windows/.config/bat/themes/Vesper.tmTheme +357 -0
  61. package/dotfiles/windows/.config/btop/btop.conf +251 -0
  62. package/dotfiles/windows/.config/btop/themes/Solarized_Dark.theme +89 -0
  63. package/dotfiles/windows/.config/btop/themes/Vercel.theme +89 -0
  64. package/dotfiles/windows/.config/btop/themes/Vesper.theme +89 -0
  65. package/dotfiles/windows/.config/nvim/.neoconf.json +15 -0
  66. package/dotfiles/windows/.config/nvim/init.lua +2 -0
  67. package/dotfiles/windows/.config/nvim/lazy-lock.json +42 -0
  68. package/dotfiles/windows/.config/nvim/lazyvim.json +11 -0
  69. package/dotfiles/windows/.config/nvim/lua/config/autocmds.lua +8 -0
  70. package/dotfiles/windows/.config/nvim/lua/config/keymaps.lua +21 -0
  71. package/dotfiles/windows/.config/nvim/lua/config/lazy.lua +72 -0
  72. package/dotfiles/windows/.config/nvim/lua/config/options.lua +13 -0
  73. package/dotfiles/windows/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  74. package/dotfiles/windows/.config/nvim/lua/plugins/editor.lua +366 -0
  75. package/dotfiles/windows/.config/nvim/lua/plugins/example.lua +197 -0
  76. package/dotfiles/windows/.config/nvim/lua/plugins/mason.lua +11 -0
  77. package/dotfiles/windows/.config/nvim/lua/plugins/oxc.lua +64 -0
  78. package/dotfiles/windows/.config/nvim/lua/plugins/ui.lua +123 -0
  79. package/dotfiles/windows/.config/nvim/stylua.toml +3 -0
  80. package/dotfiles/windows/.config/omp-themes/solarized-dark.omp.toml +197 -0
  81. package/dotfiles/windows/.config/omp-themes/vercel.omp.toml +197 -0
  82. package/dotfiles/windows/.config/omp-themes/vesper.omp.toml +197 -0
  83. package/dotfiles/windows/.config/ripgrep/config +9 -0
  84. package/dotfiles/windows/.config/wezterm/wezterm.lua +88 -0
  85. package/dotfiles/windows/powershell/Profile.ps1 +36 -0
  86. package/dotfiles/windows/powershell/functions/Switch-PromptPalette.ps1 +37 -0
  87. package/dotfiles/windows/powershell/functions/backup.ps1 +39 -0
  88. package/dotfiles/windows/powershell/functions/reload-shell.ps1 +8 -0
  89. package/dotfiles/windows/powershell/modules/aliases.ps1 +44 -0
  90. package/dotfiles/windows/powershell/modules/environment.ps1 +13 -0
  91. package/dotfiles/windows/powershell/modules/fzf.ps1 +82 -0
  92. package/dotfiles/windows/powershell/modules/prompt.ps1 +25 -0
  93. package/dotfiles/windows/powershell/modules/tools.ps1 +52 -0
  94. package/package.json +72 -0
@@ -0,0 +1,357 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>name</key>
6
+ <string>Vesper</string>
7
+ <key>author</key>
8
+ <string>Vesper Theme</string>
9
+ <key>settings</key>
10
+ <array>
11
+ <!-- Global Settings -->
12
+ <dict>
13
+ <key>settings</key>
14
+ <dict>
15
+ <key>background</key>
16
+ <string>#101010</string>
17
+ <key>foreground</key>
18
+ <string>#FFFFFF</string>
19
+ <key>caret</key>
20
+ <string>#FFC799</string>
21
+ <key>selection</key>
22
+ <string>#232323</string>
23
+ <key>selectionBorder</key>
24
+ <string>#282828</string>
25
+ <key>lineHighlight</key>
26
+ <string>#161616</string>
27
+ <key>gutter</key>
28
+ <string>#101010</string>
29
+ <key>gutterForeground</key>
30
+ <string>#505050</string>
31
+ </dict>
32
+ </dict>
33
+
34
+ <!-- Comments -->
35
+ <dict>
36
+ <key>name</key>
37
+ <string>Comment</string>
38
+ <key>scope</key>
39
+ <string>comment, punctuation.definition.comment</string>
40
+ <key>settings</key>
41
+ <dict>
42
+ <key>foreground</key>
43
+ <string>#8B8B8B</string>
44
+ <key>fontStyle</key>
45
+ <string>italic</string>
46
+ </dict>
47
+ </dict>
48
+
49
+ <!-- Strings -->
50
+ <dict>
51
+ <key>name</key>
52
+ <string>String</string>
53
+ <key>scope</key>
54
+ <string>string, string.quoted</string>
55
+ <key>settings</key>
56
+ <dict>
57
+ <key>foreground</key>
58
+ <string>#99FFE4</string>
59
+ </dict>
60
+ </dict>
61
+
62
+ <!-- Numbers -->
63
+ <dict>
64
+ <key>name</key>
65
+ <string>Number</string>
66
+ <key>scope</key>
67
+ <string>constant.numeric</string>
68
+ <key>settings</key>
69
+ <dict>
70
+ <key>foreground</key>
71
+ <string>#FFC799</string>
72
+ </dict>
73
+ </dict>
74
+
75
+ <!-- Constants -->
76
+ <dict>
77
+ <key>name</key>
78
+ <string>Constant</string>
79
+ <key>scope</key>
80
+ <string>constant, constant.language, constant.character</string>
81
+ <key>settings</key>
82
+ <dict>
83
+ <key>foreground</key>
84
+ <string>#FFC799</string>
85
+ </dict>
86
+ </dict>
87
+
88
+ <!-- Keywords -->
89
+ <dict>
90
+ <key>name</key>
91
+ <string>Keyword</string>
92
+ <key>scope</key>
93
+ <string>keyword, keyword.control, keyword.operator.logical</string>
94
+ <key>settings</key>
95
+ <dict>
96
+ <key>foreground</key>
97
+ <string>#A0A0A0</string>
98
+ </dict>
99
+ </dict>
100
+
101
+ <!-- Storage/Type Keywords -->
102
+ <dict>
103
+ <key>name</key>
104
+ <string>Storage</string>
105
+ <key>scope</key>
106
+ <string>storage, storage.type, storage.modifier</string>
107
+ <key>settings</key>
108
+ <dict>
109
+ <key>foreground</key>
110
+ <string>#A0A0A0</string>
111
+ </dict>
112
+ </dict>
113
+
114
+ <!-- Functions -->
115
+ <dict>
116
+ <key>name</key>
117
+ <string>Function</string>
118
+ <key>scope</key>
119
+ <string>entity.name.function, meta.function-call, support.function</string>
120
+ <key>settings</key>
121
+ <dict>
122
+ <key>foreground</key>
123
+ <string>#FFC799</string>
124
+ </dict>
125
+ </dict>
126
+
127
+ <!-- Classes/Types -->
128
+ <dict>
129
+ <key>name</key>
130
+ <string>Class</string>
131
+ <key>scope</key>
132
+ <string>entity.name.class, entity.name.type, support.class, support.type</string>
133
+ <key>settings</key>
134
+ <dict>
135
+ <key>foreground</key>
136
+ <string>#FFC799</string>
137
+ </dict>
138
+ </dict>
139
+
140
+ <!-- Variables -->
141
+ <dict>
142
+ <key>name</key>
143
+ <string>Variable</string>
144
+ <key>scope</key>
145
+ <string>variable, variable.other</string>
146
+ <key>settings</key>
147
+ <dict>
148
+ <key>foreground</key>
149
+ <string>#FFFFFF</string>
150
+ </dict>
151
+ </dict>
152
+
153
+ <!-- Variable Parameter -->
154
+ <dict>
155
+ <key>name</key>
156
+ <string>Variable Parameter</string>
157
+ <key>scope</key>
158
+ <string>variable.parameter</string>
159
+ <key>settings</key>
160
+ <dict>
161
+ <key>foreground</key>
162
+ <string>#FFC799</string>
163
+ </dict>
164
+ </dict>
165
+
166
+ <!-- Properties -->
167
+ <dict>
168
+ <key>name</key>
169
+ <string>Property</string>
170
+ <key>scope</key>
171
+ <string>variable.other.property, meta.property-name, support.type.property-name</string>
172
+ <key>settings</key>
173
+ <dict>
174
+ <key>foreground</key>
175
+ <string>#FFC799</string>
176
+ </dict>
177
+ </dict>
178
+
179
+ <!-- Operators -->
180
+ <dict>
181
+ <key>name</key>
182
+ <string>Operator</string>
183
+ <key>scope</key>
184
+ <string>keyword.operator</string>
185
+ <key>settings</key>
186
+ <dict>
187
+ <key>foreground</key>
188
+ <string>#A0A0A0</string>
189
+ </dict>
190
+ </dict>
191
+
192
+ <!-- Punctuation -->
193
+ <dict>
194
+ <key>name</key>
195
+ <string>Punctuation</string>
196
+ <key>scope</key>
197
+ <string>punctuation</string>
198
+ <key>settings</key>
199
+ <dict>
200
+ <key>foreground</key>
201
+ <string>#A0A0A0</string>
202
+ </dict>
203
+ </dict>
204
+
205
+ <!-- Tags (HTML/XML) -->
206
+ <dict>
207
+ <key>name</key>
208
+ <string>Tag</string>
209
+ <key>scope</key>
210
+ <string>entity.name.tag</string>
211
+ <key>settings</key>
212
+ <dict>
213
+ <key>foreground</key>
214
+ <string>#FFFFFF</string>
215
+ </dict>
216
+ </dict>
217
+
218
+ <!-- Attributes -->
219
+ <dict>
220
+ <key>name</key>
221
+ <string>Attribute</string>
222
+ <key>scope</key>
223
+ <string>entity.other.attribute-name</string>
224
+ <key>settings</key>
225
+ <dict>
226
+ <key>foreground</key>
227
+ <string>#FFC799</string>
228
+ </dict>
229
+ </dict>
230
+
231
+ <!-- Markdown Heading -->
232
+ <dict>
233
+ <key>name</key>
234
+ <string>Markdown Heading</string>
235
+ <key>scope</key>
236
+ <string>markup.heading, entity.name.section</string>
237
+ <key>settings</key>
238
+ <dict>
239
+ <key>foreground</key>
240
+ <string>#FFC799</string>
241
+ <key>fontStyle</key>
242
+ <string>bold</string>
243
+ </dict>
244
+ </dict>
245
+
246
+ <!-- Markdown Bold -->
247
+ <dict>
248
+ <key>name</key>
249
+ <string>Markdown Bold</string>
250
+ <key>scope</key>
251
+ <string>markup.bold</string>
252
+ <key>settings</key>
253
+ <dict>
254
+ <key>foreground</key>
255
+ <string>#FFFFFF</string>
256
+ <key>fontStyle</key>
257
+ <string>bold</string>
258
+ </dict>
259
+ </dict>
260
+
261
+ <!-- Markdown Italic -->
262
+ <dict>
263
+ <key>name</key>
264
+ <string>Markdown Italic</string>
265
+ <key>scope</key>
266
+ <string>markup.italic</string>
267
+ <key>settings</key>
268
+ <dict>
269
+ <key>foreground</key>
270
+ <string>#FFFFFF</string>
271
+ <key>fontStyle</key>
272
+ <string>italic</string>
273
+ </dict>
274
+ </dict>
275
+
276
+ <!-- Markdown Code -->
277
+ <dict>
278
+ <key>name</key>
279
+ <string>Markdown Code</string>
280
+ <key>scope</key>
281
+ <string>markup.inline.raw, markup.raw.block</string>
282
+ <key>settings</key>
283
+ <dict>
284
+ <key>foreground</key>
285
+ <string>#A0A0A0</string>
286
+ </dict>
287
+ </dict>
288
+
289
+ <!-- Markdown Link -->
290
+ <dict>
291
+ <key>name</key>
292
+ <string>Markdown Link</string>
293
+ <key>scope</key>
294
+ <string>markup.underline.link</string>
295
+ <key>settings</key>
296
+ <dict>
297
+ <key>foreground</key>
298
+ <string>#FFC799</string>
299
+ </dict>
300
+ </dict>
301
+
302
+ <!-- Invalid -->
303
+ <dict>
304
+ <key>name</key>
305
+ <string>Invalid</string>
306
+ <key>scope</key>
307
+ <string>invalid, invalid.illegal</string>
308
+ <key>settings</key>
309
+ <dict>
310
+ <key>foreground</key>
311
+ <string>#FF8080</string>
312
+ </dict>
313
+ </dict>
314
+
315
+ <!-- Diff Added -->
316
+ <dict>
317
+ <key>name</key>
318
+ <string>Diff Added</string>
319
+ <key>scope</key>
320
+ <string>markup.inserted, meta.diff.header.to-file</string>
321
+ <key>settings</key>
322
+ <dict>
323
+ <key>foreground</key>
324
+ <string>#99FFE4</string>
325
+ </dict>
326
+ </dict>
327
+
328
+ <!-- Diff Deleted -->
329
+ <dict>
330
+ <key>name</key>
331
+ <string>Diff Deleted</string>
332
+ <key>scope</key>
333
+ <string>markup.deleted, meta.diff.header.from-file</string>
334
+ <key>settings</key>
335
+ <dict>
336
+ <key>foreground</key>
337
+ <string>#FF8080</string>
338
+ </dict>
339
+ </dict>
340
+
341
+ <!-- Diff Changed -->
342
+ <dict>
343
+ <key>name</key>
344
+ <string>Diff Changed</string>
345
+ <key>scope</key>
346
+ <string>markup.changed</string>
347
+ <key>settings</key>
348
+ <dict>
349
+ <key>foreground</key>
350
+ <string>#A0A0A0</string>
351
+ </dict>
352
+ </dict>
353
+ </array>
354
+ <key>uuid</key>
355
+ <string>vesper-theme-uuid-001</string>
356
+ </dict>
357
+ </plist>
@@ -0,0 +1,272 @@
1
+ #? Config file for btop v.1.4.6
2
+
3
+ #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
4
+ #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
5
+ color_theme = "Solarized_Dark"
6
+
7
+ #* If the theme set background should be shown, set to False if you want terminal background transparency.
8
+ theme_background = false
9
+
10
+ #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
11
+ truecolor = true
12
+
13
+ #* Set to true to force tty mode regardless if a real tty has been detected or not.
14
+ #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
15
+ force_tty = false
16
+
17
+ #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
18
+ #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
19
+ #* Use whitespace " " as separator between different presets.
20
+ #* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
21
+ presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
22
+
23
+ #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists.
24
+ #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
25
+ vim_keys = false
26
+
27
+ #* Rounded corners on boxes, is ignored if TTY mode is ON.
28
+ rounded_corners = true
29
+
30
+ #* Use terminal synchronized output sequences to reduce flickering on supported terminals.
31
+ terminal_sync = true
32
+
33
+ #* Default symbols to use for graph creation, "braille", "block" or "tty".
34
+ #* "braille" offers the highest resolution but might not be included in all fonts.
35
+ #* "block" has half the resolution of braille but uses more common characters.
36
+ #* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY.
37
+ #* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view.
38
+ graph_symbol = "braille"
39
+
40
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
41
+ graph_symbol_cpu = "default"
42
+
43
+ # Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
44
+ graph_symbol_gpu = "default"
45
+
46
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
47
+ graph_symbol_mem = "default"
48
+
49
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
50
+ graph_symbol_net = "default"
51
+
52
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
53
+ graph_symbol_proc = "default"
54
+
55
+ #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
56
+ shown_boxes = "cpu mem net proc"
57
+
58
+ #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
59
+ update_ms = 2000
60
+
61
+ #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
62
+ #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
63
+ proc_sorting = "cpu lazy"
64
+
65
+ #* Reverse sorting order, True or False.
66
+ proc_reversed = false
67
+
68
+ #* Show processes as a tree.
69
+ proc_tree = false
70
+
71
+ #* Use the cpu graph colors in the process list.
72
+ proc_colors = true
73
+
74
+ #* Use a darkening gradient in the process list.
75
+ proc_gradient = true
76
+
77
+ #* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
78
+ proc_per_core = true
79
+
80
+ #* Show process memory as bytes instead of percent.
81
+ proc_mem_bytes = true
82
+
83
+ #* Show cpu graph for each process.
84
+ proc_cpu_graphs = true
85
+
86
+ #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
87
+ proc_info_smaps = false
88
+
89
+ #* Show proc box on left side of screen instead of right.
90
+ proc_left = false
91
+
92
+ #* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
93
+ proc_filter_kernel = false
94
+
95
+ #* In tree-view, always accumulate child process resources in the parent process.
96
+ proc_aggregate = false
97
+
98
+ #* Should cpu and memory usage display be preserved for dead processes when paused.
99
+ keep_dead_proc_usage = false
100
+
101
+ #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
102
+ #* Select from a list of detected attributes from the options menu.
103
+ cpu_graph_upper = "Auto"
104
+
105
+ #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
106
+ #* Select from a list of detected attributes from the options menu.
107
+ cpu_graph_lower = "Auto"
108
+
109
+ #* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
110
+ show_gpu_info = "Auto"
111
+
112
+ #* Toggles if the lower CPU graph should be inverted.
113
+ cpu_invert_lower = true
114
+
115
+ #* Set to True to completely disable the lower CPU graph.
116
+ cpu_single_graph = false
117
+
118
+ #* Show cpu box at bottom of screen instead of top.
119
+ cpu_bottom = false
120
+
121
+ #* Shows the system uptime in the CPU box.
122
+ show_uptime = true
123
+
124
+ #* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo.
125
+ show_cpu_watts = true
126
+
127
+ #* Show cpu temperature.
128
+ check_temp = true
129
+
130
+ #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
131
+ cpu_sensor = "Auto"
132
+
133
+ #* Show temperatures for cpu cores also if check_temp is True and sensors has been found.
134
+ show_coretemp = true
135
+
136
+ #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.
137
+ #* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.
138
+ #* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.
139
+ #* Example: "4:0 5:1 6:3"
140
+ cpu_core_map = ""
141
+
142
+ #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
143
+ temp_scale = "celsius"
144
+
145
+ #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
146
+ base_10_sizes = false
147
+
148
+ #* Show CPU frequency.
149
+ show_cpu_freq = true
150
+
151
+ #* How to calculate CPU frequency, available values: "first", "range", "lowest", "highest" and "average".
152
+ freq_mode = "first"
153
+
154
+ #* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
155
+ #* Special formatting: /host = hostname | /user = username | /uptime = system uptime
156
+ clock_format = "%X"
157
+
158
+ #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
159
+ background_update = true
160
+
161
+ #* Custom cpu model name, empty string to disable.
162
+ custom_cpu_name = ""
163
+
164
+ #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
165
+ #* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user"
166
+ disks_filter = ""
167
+
168
+ #* Show graphs instead of meters for memory values.
169
+ mem_graphs = true
170
+
171
+ #* Show mem box below net box instead of above.
172
+ mem_below_net = false
173
+
174
+ #* Count ZFS ARC in cached and available memory.
175
+ zfs_arc_cached = true
176
+
177
+ #* If swap memory should be shown in memory box.
178
+ show_swap = true
179
+
180
+ #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
181
+ swap_disk = true
182
+
183
+ #* If mem box should be split to also show disks info.
184
+ show_disks = true
185
+
186
+ #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
187
+ only_physical = true
188
+
189
+ #* Read disks list from /etc/fstab. This also disables only_physical.
190
+ use_fstab = true
191
+
192
+ #* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
193
+ zfs_hide_datasets = false
194
+
195
+ #* Set to true to show available disk space for privileged users.
196
+ disk_free_priv = false
197
+
198
+ #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
199
+ show_io_stat = true
200
+
201
+ #* Toggles io mode for disks, showing big graphs for disk read/write speeds.
202
+ io_mode = false
203
+
204
+ #* Set to True to show combined read/write io graphs in io mode.
205
+ io_graph_combined = false
206
+
207
+ #* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ".
208
+ #* Example: "/mnt/media:100 /:20 /boot:1".
209
+ io_graph_speeds = ""
210
+
211
+ #* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False.
212
+ net_download = 100
213
+
214
+ net_upload = 100
215
+
216
+ #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
217
+ net_auto = true
218
+
219
+ #* Sync the auto scaling for download and upload to whichever currently has the highest scale.
220
+ net_sync = true
221
+
222
+ #* Starts with the Network Interface specified here.
223
+ net_iface = ""
224
+
225
+ #* "True" shows bitrates in base 10 (Kbps, Mbps). "False" shows bitrates in binary sizes (Kibps, Mibps, etc.). "Auto" uses base_10_sizes.
226
+ base_10_bitrate = "Auto"
227
+
228
+ #* Show battery stats in top right if battery is present.
229
+ show_battery = true
230
+
231
+ #* Which battery to use if multiple are present. "Auto" for auto detection.
232
+ selected_battery = "Auto"
233
+
234
+ #* Show power stats of battery next to charge indicator.
235
+ show_battery_watts = true
236
+
237
+ #* Set loglevel for "~/.local/state/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
238
+ #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
239
+ log_level = "WARNING"
240
+
241
+ #* Automatically save current settings to config file on exit.
242
+ save_config_on_exit = true
243
+
244
+ #* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
245
+ nvml_measure_pcie_speeds = true
246
+
247
+ #* Measure PCIe throughput on AMD cards, may impact performance on certain cards.
248
+ rsmi_measure_pcie_speeds = true
249
+
250
+ #* Horizontally mirror the GPU graph.
251
+ gpu_mirror_graph = true
252
+
253
+ #* Set which GPU vendors to show. Available values are "nvidia amd intel"
254
+ shown_gpus = "nvidia amd intel"
255
+
256
+ #* Custom gpu0 model name, empty string to disable.
257
+ custom_gpu_name0 = ""
258
+
259
+ #* Custom gpu1 model name, empty string to disable.
260
+ custom_gpu_name1 = ""
261
+
262
+ #* Custom gpu2 model name, empty string to disable.
263
+ custom_gpu_name2 = ""
264
+
265
+ #* Custom gpu3 model name, empty string to disable.
266
+ custom_gpu_name3 = ""
267
+
268
+ #* Custom gpu4 model name, empty string to disable.
269
+ custom_gpu_name4 = ""
270
+
271
+ #* Custom gpu5 model name, empty string to disable.
272
+ custom_gpu_name5 = ""