1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
//! Badge settings tab.
//!
//! Contains:
//! - Badge enable/disable
//! - Badge format string with variable interpolation
//! - Badge appearance (color, opacity, font)
//! - Badge positioning (margins, max size)
use super::SettingsUI;
use super::section::{SLIDER_WIDTH, collapsing_section, section_matches};
use std::collections::HashSet;
const SLIDER_HEIGHT: f32 = 18.0;
/// Show the badge tab content.
pub fn show(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
let query = settings.search_query.trim().to_lowercase();
// General section
if section_matches(
&query,
"General",
&["enable", "badge", "format", "overlay", "text"],
) {
show_general_section(ui, settings, changes_this_frame, collapsed);
}
// Appearance section
if section_matches(
&query,
"Appearance",
&["color", "opacity", "font", "bold", "badge"],
) {
show_appearance_section(ui, settings, changes_this_frame, collapsed);
}
// Position section
if section_matches(
&query,
"Position",
&["margin", "size", "width", "height", "badge", "placement"],
) {
show_position_section(ui, settings, changes_this_frame, collapsed);
}
// Variables section (help/reference)
if section_matches(
&query,
"Variables",
&[
"variable",
"session",
"hostname",
"username",
"path",
"badge",
"exit code",
"command",
],
) {
show_variables_section(ui, settings, changes_this_frame, collapsed);
}
}
// ============================================================================
// General Section
// ============================================================================
fn show_general_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
collapsing_section(ui, "General", "badge_general", true, collapsed, |ui| {
if ui
.checkbox(&mut settings.config.badge_enabled, "Enable badge")
.on_hover_text("Display a semi-transparent text overlay in the terminal corner")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
ui.add_space(8.0);
ui.label("Badge format:");
ui.add_space(2.0);
// Multi-line text editor for format string
if ui
.add(
egui::TextEdit::singleline(&mut settings.config.badge_format)
.hint_text("\\(session.username)@\\(session.hostname)")
.desired_width(ui.available_width() - 20.0),
)
.on_hover_text("Format string with variable placeholders like \\(session.hostname)")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
ui.add_space(4.0);
ui.label(
egui::RichText::new("Use \\(session.variable) syntax for dynamic values")
.small()
.color(egui::Color32::GRAY),
);
});
}
// ============================================================================
// Appearance Section
// ============================================================================
fn show_appearance_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
collapsing_section(
ui,
"Appearance",
"badge_appearance",
true,
collapsed,
|ui| {
// Color picker
ui.horizontal(|ui| {
ui.label("Text color:");
let mut color = egui::Color32::from_rgb(
settings.config.badge_color[0],
settings.config.badge_color[1],
settings.config.badge_color[2],
);
if ui.color_edit_button_srgba(&mut color).changed() {
settings.config.badge_color = [color.r(), color.g(), color.b()];
settings.has_changes = true;
*changes_this_frame = true;
}
});
// Opacity slider
ui.horizontal(|ui| {
ui.label("Opacity:");
if ui
.add_sized(
[SLIDER_WIDTH, SLIDER_HEIGHT],
egui::Slider::new(&mut settings.config.badge_color_alpha, 0.0..=1.0)
.show_value(true),
)
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.add_space(8.0);
// Font family
ui.horizontal(|ui| {
ui.label("Font:");
if ui
.add(
egui::TextEdit::singleline(&mut settings.config.badge_font)
.hint_text("Helvetica")
.desired_width(150.0),
)
.on_hover_text("Font family for badge text (uses system font if not found)")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
// Bold checkbox
if ui
.checkbox(&mut settings.config.badge_font_bold, "Bold")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
},
);
}
// ============================================================================
// Position Section
// ============================================================================
fn show_position_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
collapsing_section(
ui,
"Position & Size",
"badge_position",
false,
collapsed,
|ui| {
ui.label("Margins (pixels):");
ui.horizontal(|ui| {
ui.label("Top:");
if ui
.add_sized(
[SLIDER_WIDTH, SLIDER_HEIGHT],
egui::Slider::new(&mut settings.config.badge_top_margin, 0.0..=100.0),
)
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Right:");
if ui
.add_sized(
[SLIDER_WIDTH, SLIDER_HEIGHT],
egui::Slider::new(&mut settings.config.badge_right_margin, 0.0..=100.0),
)
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.add_space(8.0);
ui.label("Maximum size (fraction of terminal):");
ui.horizontal(|ui| {
ui.label("Max width:");
if ui
.add_sized(
[SLIDER_WIDTH, SLIDER_HEIGHT],
egui::Slider::new(&mut settings.config.badge_max_width, 0.1..=1.0)
.show_value(true),
)
.on_hover_text("Maximum badge width as fraction of terminal width")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Max height:");
if ui
.add_sized(
[SLIDER_WIDTH, SLIDER_HEIGHT],
egui::Slider::new(&mut settings.config.badge_max_height, 0.05..=0.5)
.show_value(true),
)
.on_hover_text("Maximum badge height as fraction of terminal height")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
},
);
}
// ============================================================================
// Variables Section (Reference)
// ============================================================================
fn show_variables_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
collapsing_section(
ui,
"Available Variables",
"badge_variables",
false,
collapsed,
|ui| {
ui.label("Click a variable to append it to the format string:");
ui.add_space(4.0);
let variables = [
("\\(session.hostname)", "Remote or local hostname"),
("\\(session.username)", "Current username"),
("\\(session.path)", "Current working directory"),
("\\(session.job)", "Foreground job name"),
("\\(session.last_command)", "Last executed command"),
("\\(session.profile_name)", "Current profile name"),
("\\(session.tty)", "TTY device name"),
("\\(session.columns)", "Terminal columns"),
("\\(session.rows)", "Terminal rows"),
("\\(session.bell_count)", "Number of bells received"),
("\\(session.selection)", "Currently selected text"),
("\\(session.tmux_pane_title)", "tmux pane title"),
("\\(session.exit_code)", "Last command exit code"),
("\\(session.current_command)", "Currently running command"),
];
// Collect clicked variable to avoid borrow issues
let mut clicked_var: Option<&str> = None;
egui::Grid::new("badge_variables_grid")
.num_columns(2)
.spacing([10.0, 4.0])
.show(ui, |ui| {
for (var, desc) in variables {
// Make variable a clickable link
let response = ui.add(
egui::Label::new(
egui::RichText::new(var)
.monospace()
.color(egui::Color32::from_rgb(100, 150, 255)),
)
.sense(egui::Sense::click()),
);
if response.clicked() {
clicked_var = Some(var);
}
// Show pointer cursor and tooltip on hover
if response.hovered() {
ui.ctx().set_cursor_icon(egui::CursorIcon::PointingHand);
}
response.on_hover_text("Click to append to format");
ui.label(desc);
ui.end_row();
}
});
// Handle click outside the grid to avoid borrow conflict
if let Some(var) = clicked_var {
settings.config.badge_format.push_str(var);
settings.has_changes = true;
*changes_this_frame = true;
}
ui.add_space(8.0);
ui.label(
egui::RichText::new(
"Tip: Badge format can also be set via OSC 1337;SetBadgeFormat=BASE64",
)
.small()
.color(egui::Color32::GRAY),
);
},
);
}