Hide pulseaudio-created clients

This commit is contained in:
futpib 2018-11-22 02:57:50 +03:00
parent 1b6caddb85
commit f0eec6fbdc
3 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,9 @@ const r = require('r-dom');
const Label = require('../label');
const Checkbox = props => r(Label, [
const Checkbox = ({ title, ...props }) => r(Label, {
title,
}, [
r.input({
...props,
type: 'checkbox',

View File

@ -758,6 +758,7 @@ class Graph extends React.Component {
const name = path([ 'properties', 'application', 'name' ], pai) || '';
if (binary.startsWith('pavucontrol') ||
binary.startsWith('kmix') ||
binary === 'pulseaudio' ||
name === 'paclient.js'
) {
return false;

View File

@ -116,6 +116,7 @@ class Preferences extends React.Component {
r(Checkbox, {
checked: this.props.preferences.hidePulseaudioApps,
onChange: () => this.props.actions.toggle('hidePulseaudioApps'),
title: 'Including volume control apps and some internal machinery',
}, 'Hide pulseaudio applications'),
]),