@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,251 @@
1
+ #? Config file for btop v.1.4.6
2
+ # Adapted for Windows: removed use_fstab (Linux-only /etc/fstab option).
3
+
4
+ #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
5
+ #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
6
+ color_theme = "Solarized_Dark"
7
+
8
+ #* If the theme set background should be shown, set to False if you want terminal background transparency.
9
+ theme_background = false
10
+
11
+ #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
12
+ truecolor = true
13
+
14
+ #* Set to true to force tty mode regardless if a real tty has been detected or not.
15
+ #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
16
+ force_tty = false
17
+
18
+ #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
19
+ #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
20
+ #* Use whitespace " " as separator between different presets.
21
+ #* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
22
+ presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
23
+
24
+ #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists.
25
+ #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
26
+ vim_keys = false
27
+
28
+ #* Rounded corners on boxes, is ignored if TTY mode is ON.
29
+ rounded_corners = true
30
+
31
+ #* Use terminal synchronized output sequences to reduce flickering on supported terminals.
32
+ terminal_sync = true
33
+
34
+ #* Default symbols to use for graph creation, "braille", "block" or "tty".
35
+ #* "braille" offers the highest resolution but might not be included in all fonts.
36
+ #* "block" has half the resolution of braille but uses more common characters.
37
+ #* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY.
38
+ #* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view.
39
+ graph_symbol = "braille"
40
+
41
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
42
+ graph_symbol_cpu = "default"
43
+
44
+ # Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
45
+ graph_symbol_gpu = "default"
46
+
47
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
48
+ graph_symbol_mem = "default"
49
+
50
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
51
+ graph_symbol_net = "default"
52
+
53
+ # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
54
+ graph_symbol_proc = "default"
55
+
56
+ #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
57
+ shown_boxes = "cpu mem net proc"
58
+
59
+ #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
60
+ update_ms = 2000
61
+
62
+ #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
63
+ #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
64
+ proc_sorting = "cpu lazy"
65
+
66
+ #* Reverse sorting order, True or False.
67
+ proc_reversed = false
68
+
69
+ #* Show processes as a tree.
70
+ proc_tree = false
71
+
72
+ #* Use the cpu graph colors in the process list.
73
+ proc_colors = true
74
+
75
+ #* Use a darkening gradient in the process list.
76
+ proc_gradient = true
77
+
78
+ #* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
79
+ proc_per_core = true
80
+
81
+ #* Show process memory as bytes instead of percent.
82
+ proc_mem_bytes = true
83
+
84
+ #* Show cpu graph for each process.
85
+ proc_cpu_graphs = true
86
+
87
+ #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
88
+ proc_info_smaps = false
89
+
90
+ #* Show proc box on left side of screen instead of right.
91
+ proc_left = false
92
+
93
+ #* In tree-view, always accumulate child process resources in the parent process.
94
+ proc_aggregate = false
95
+
96
+ #* Should cpu and memory usage display be preserved for dead processes when paused.
97
+ keep_dead_proc_usage = false
98
+
99
+ #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
100
+ #* Select from a list of detected attributes from the options menu.
101
+ cpu_graph_upper = "Auto"
102
+
103
+ #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
104
+ #* Select from a list of detected attributes from the options menu.
105
+ cpu_graph_lower = "Auto"
106
+
107
+ #* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
108
+ show_gpu_info = "Auto"
109
+
110
+ #* Toggles if the lower CPU graph should be inverted.
111
+ cpu_invert_lower = true
112
+
113
+ #* Set to True to completely disable the lower CPU graph.
114
+ cpu_single_graph = false
115
+
116
+ #* Show cpu box at bottom of screen instead of top.
117
+ cpu_bottom = false
118
+
119
+ #* Shows the system uptime in the CPU box.
120
+ show_uptime = true
121
+
122
+ #* Shows the CPU package current power consumption in watts.
123
+ show_cpu_watts = true
124
+
125
+ #* Show cpu temperature.
126
+ check_temp = true
127
+
128
+ #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
129
+ cpu_sensor = "Auto"
130
+
131
+ #* Show temperatures for cpu cores also if check_temp is True and sensors has been found.
132
+ show_coretemp = true
133
+
134
+ #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.
135
+ cpu_core_map = ""
136
+
137
+ #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
138
+ temp_scale = "celsius"
139
+
140
+ #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
141
+ base_10_sizes = false
142
+
143
+ #* Show CPU frequency.
144
+ show_cpu_freq = true
145
+
146
+ #* How to calculate CPU frequency, available values: "first", "range", "lowest", "highest" and "average".
147
+ freq_mode = "first"
148
+
149
+ #* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
150
+ #* Special formatting: /host = hostname | /user = username | /uptime = system uptime
151
+ clock_format = "%X"
152
+
153
+ #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
154
+ background_update = true
155
+
156
+ #* Custom cpu model name, empty string to disable.
157
+ custom_cpu_name = ""
158
+
159
+ #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
160
+ disks_filter = ""
161
+
162
+ #* Show graphs instead of meters for memory values.
163
+ mem_graphs = true
164
+
165
+ #* Show mem box below net box instead of above.
166
+ mem_below_net = false
167
+
168
+ #* Count ZFS ARC in cached and available memory.
169
+ zfs_arc_cached = true
170
+
171
+ #* If swap memory should be shown in memory box.
172
+ show_swap = true
173
+
174
+ #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
175
+ swap_disk = true
176
+
177
+ #* If mem box should be split to also show disks info.
178
+ show_disks = true
179
+
180
+ #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
181
+ only_physical = true
182
+
183
+ #* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
184
+ zfs_hide_datasets = false
185
+
186
+ #* Set to true to show available disk space for privileged users.
187
+ disk_free_priv = false
188
+
189
+ #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
190
+ show_io_stat = true
191
+
192
+ #* Toggles io mode for disks, showing big graphs for disk read/write speeds.
193
+ io_mode = false
194
+
195
+ #* Set to True to show combined read/write io graphs in io mode.
196
+ io_graph_combined = false
197
+
198
+ #* Set the top speed for the io graphs in MiB/s (100 by default).
199
+ io_graph_speeds = ""
200
+
201
+ #* Set fixed values for network graphs in Mebibits.
202
+ net_download = 100
203
+
204
+ net_upload = 100
205
+
206
+ #* Use network graphs auto rescaling mode.
207
+ net_auto = true
208
+
209
+ #* Sync the auto scaling for download and upload.
210
+ net_sync = true
211
+
212
+ #* Starts with the Network Interface specified here.
213
+ net_iface = ""
214
+
215
+ #* "True" shows bitrates in base 10 (Kbps, Mbps). "False" shows bitrates in binary sizes (Kibps, Mibps, etc.).
216
+ base_10_bitrate = "Auto"
217
+
218
+ #* Show battery stats in top right if battery is present.
219
+ show_battery = true
220
+
221
+ #* Which battery to use if multiple are present. "Auto" for auto detection.
222
+ selected_battery = "Auto"
223
+
224
+ #* Show power stats of battery next to charge indicator.
225
+ show_battery_watts = true
226
+
227
+ #* Set loglevel for "~/.local/state/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
228
+ log_level = "WARNING"
229
+
230
+ #* Automatically save current settings to config file on exit.
231
+ save_config_on_exit = true
232
+
233
+ #* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
234
+ nvml_measure_pcie_speeds = true
235
+
236
+ #* Measure PCIe throughput on AMD cards, may impact performance on certain cards.
237
+ rsmi_measure_pcie_speeds = true
238
+
239
+ #* Horizontally mirror the GPU graph.
240
+ gpu_mirror_graph = true
241
+
242
+ #* Set which GPU vendors to show. Available values are "nvidia amd intel"
243
+ shown_gpus = "nvidia amd intel"
244
+
245
+ #* Custom gpu model names, empty string to disable.
246
+ custom_gpu_name0 = ""
247
+ custom_gpu_name1 = ""
248
+ custom_gpu_name2 = ""
249
+ custom_gpu_name3 = ""
250
+ custom_gpu_name4 = ""
251
+ custom_gpu_name5 = ""
@@ -0,0 +1,89 @@
1
+ #Bashtop solarized theme
2
+ #by aristocratos
3
+
4
+ # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
5
+ # example for white: "#FFFFFF", "#ff" or "255 255 255".
6
+
7
+ # All graphs and meters can be gradients
8
+ # For single color graphs leave "mid" and "end" variable empty.
9
+ # Use "start" and "end" variables for two color gradient
10
+ # Use "start", "mid" and "end" for three color gradient
11
+
12
+ # Main background, empty for terminal default, need to be empty if you want transparent background
13
+ theme[main_bg]="#002b36"
14
+
15
+ # Main text color
16
+ theme[main_fg]="#eee8d5"
17
+
18
+ # Title color for boxes
19
+ theme[title]="#fdf6e3"
20
+
21
+ # Highlight color for keyboard shortcuts
22
+ theme[hi_fg]="#b58900"
23
+
24
+ # Background color of selected items
25
+ theme[selected_bg]="#073642"
26
+
27
+ # Foreground color of selected items
28
+ theme[selected_fg]="#d6a200"
29
+
30
+ # Color of inactive/disabled text
31
+ theme[inactive_fg]="#073642"
32
+
33
+ # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
34
+ theme[proc_misc]="#bad600"
35
+
36
+ # Cpu box outline color
37
+ theme[cpu_box]="#586e75"
38
+
39
+ # Memory/disks box outline color
40
+ theme[mem_box]="#586e75"
41
+
42
+ # Net up/down box outline color
43
+ theme[net_box]="#586e75"
44
+
45
+ # Processes box outline color
46
+ theme[proc_box]="#586e75"
47
+
48
+ # Box divider line and small boxes line color
49
+ theme[div_line]="#586e75"
50
+
51
+ # Temperature graph colors
52
+ theme[temp_start]="#268bd2"
53
+ theme[temp_mid]="#ccb5f7"
54
+ theme[temp_end]="#fc5378"
55
+
56
+ # CPU graph colors
57
+ theme[cpu_start]="#adc700"
58
+ theme[cpu_mid]="#d6a200"
59
+ theme[cpu_end]="#e65317"
60
+
61
+ # Mem/Disk free meter
62
+ theme[free_start]="#4e5900"
63
+ theme[free_mid]=""
64
+ theme[free_end]="#bad600"
65
+
66
+ # Mem/Disk cached meter
67
+ theme[cached_start]="#114061"
68
+ theme[cached_mid]=""
69
+ theme[cached_end]="#268bd2"
70
+
71
+ # Mem/Disk available meter
72
+ theme[available_start]="#705500"
73
+ theme[available_mid]=""
74
+ theme[available_end]="#edb400"
75
+
76
+ # Mem/Disk used meter
77
+ theme[used_start]="#6e1718"
78
+ theme[used_mid]=""
79
+ theme[used_end]="#e02f30"
80
+
81
+ # Download graph colors
82
+ theme[download_start]="#3d4070"
83
+ theme[download_mid]="#6c71c4"
84
+ theme[download_end]="#a3a8f7"
85
+
86
+ # Upload graph colors
87
+ theme[upload_start]="#701c45"
88
+ theme[upload_mid]="#d33682"
89
+ theme[upload_end]="#f56caf"