Hide pulseaudio-created clients
This commit is contained in:
parent
1b6caddb85
commit
f0eec6fbdc
|
@ -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',
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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'),
|
||||
]),
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user