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 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',
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user