diff --git a/README.md b/README.md index e2a6afc..ffd0486 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,10 @@ Optional features can be enabled by creating new `boolean` preferences in `about Make all tab icons look kinda like symbolic icons. +- **Hide WebRTC indicator** `gnomeTheme.hideWebrtcIndicator` + + Hide redundant WebRTC indicator since GNOME provides their own privacy icons in the top right. + - **Drag window from headerbar buttons** `gnomeTheme.dragWindowHeaderbarButtons` Allow draging the window from headerbar buttons. diff --git a/theme/parts/toolbox.css b/theme/parts/toolbox.css index 16ec848..18ac4df 100644 --- a/theme/parts/toolbox.css +++ b/theme/parts/toolbox.css @@ -111,3 +111,11 @@ findbar:-moz-window-inactive description, .notificationbox-stack[notificationside="bottom"] notification { border-top: 1px solid var(--gnome-toolbar-border-color) !important; } + +/* OPTIONAL: Hide WebRTC indicator */ +@supports -moz-bool-pref("gnomeTheme.hideWebrtcIndicator") { + #webrtcIndicator { + display: none; + } +} +