Skip to content

Commit 965d3c9

Browse files
committed
feat: add openal workaround to faq
1 parent 8a953e0 commit 965d3c9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/pages/faq.vue

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,27 @@
3434
</v-list-item-subtitle>
3535
</v-list-item-content>
3636
</v-list-item>
37+
38+
<v-list-item v-if="$store.getters.selectedOS && $store.getters.selectedOS.name === 'Linux'">
39+
<v-list-item-content>
40+
<v-list-item-title class="text-wrap">
41+
<v-icon left color="grey lighten-1">mdi-help-circle-outline</v-icon>
42+
When I try to pass-through an application it fails
43+
</v-list-item-title>
44+
<v-list-item-subtitle class="text-wrap">
45+
<div class="mb-2">
46+
<v-icon left color="primary">mdi-information-outline</v-icon>
47+
Some apps use OpenAL for audio which may prevent this. To solve this create a file
48+
named
49+
<code>.alsoftrc</code> in your home folder with the following contents:
50+
</div>
51+
<pre style="white-space: pre-line">
52+
[pulse]
53+
allow-moves=yes
54+
</pre>
55+
</v-list-item-subtitle>
56+
</v-list-item-content>
57+
</v-list-item>
3758
</v-list>
3859
<div class="text-center">more to come...</div>
3960
</v-card-text>

0 commit comments

Comments
 (0)