Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
Document issue #10: not unmuting subsystems
Browse files Browse the repository at this point in the history
Closes #10
  • Loading branch information
coldfix committed Sep 30, 2018
1 parent 2e2449d commit fc31f0d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ local globalkeys = awful.util.table.join(
)
```

### Known issues

One common pitfall is using the wrong sound device. On systems with pulseaudio,
it's usually best to create the control with:

```lua
volumecfg = volume_control {device="pulse"}
```

On some systems, clicking the widget will mute audio, however clicking it again
will only unmute *Master* while leaving other subsystems (Speaker, …) muted,
see e.g. [#10](https://github.com/deficient/volume-control/pull/10). This may
be fixed by setting the device to *pulse*, as described above.

### Constructor

You can specify any subset of the following arguments to the constructor.
Expand Down Expand Up @@ -80,8 +94,6 @@ Card: ${card}]],
})
```

Try, `device="pulse"` if having problems.

### Mouse actions

The easiest way to customize what happens on left/right/middle click is to
Expand Down

0 comments on commit fc31f0d

Please sign in to comment.