summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-25 15:45:26 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-25 15:45:26 +0100
commitf3dcaa18f2c97d39963df8414c80c4689c2882c4 (patch)
tree51d60b4692c2b712ac848e16a97fc67e3a177733 /config.def.h
parent12aa9ddc7337161c3e6ed18414787789a9c8dc22 (diff)
downloadglitch-f3dcaa18f2c97d39963df8414c80c4689c2882c4.tar.gz
Add microphone status indicator
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index dc7965d..4fbf5ed 100644
--- a/config.def.h
+++ b/config.def.h
@@ -23,6 +23,10 @@ static const char *on_top_inactive_border_color = "darkorange";
static const char *widget_font = "Berkeley Mono:size=7:bold";
static const char *indicator_fg_color = "white";
static const char *indicator_bg_color = "blue";
+static const char *mic_active_bg_color = "darkred";
+static const char *mic_muted_bg_color = "#333333";
+static const char *mic_active_fg_color = "white";
+static const char *mic_muted_fg_color = "white";
static const char *widget_fg_color = "#999999";
static const char *time_format = "%A %d.%m.%Y %H:%M:%S";
@@ -83,6 +87,7 @@ static Keybinds keybinds[] = {
{ MODKEY, XK_f, toggle_fullscreen, { 0 } },
{ MODKEY | ShiftMask, XK_r, reload, { 0 } },
{ MODKEY, XK_c, center_window, { 0 } },
+ { MODKEY, XK_m, toggle_mic_mute, { 0 } },
{ MODKEY | ShiftMask, XK_q, quit, { 0 } },
{ MODKEY, XK_q, close_window, { 0 } },
};