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 Label = require('../label');
const Checkbox = props => r(Label, [ const Checkbox = ({ title, ...props }) => r(Label, {
title,
}, [
r.input({ r.input({
...props, ...props,
type: 'checkbox', type: 'checkbox',

View File

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

View File

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