forked from xou816/spot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dev.alextren.Spot.gschema.xml
46 lines (46 loc) · 1.63 KB
/
dev.alextren.Spot.gschema.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="spot">
<enum id="dev.alextren.Spot.AudioBackend">
<value value="0" nick="pulseaudio"/>
<value value="1" nick="alsa"/>
</enum>
<enum id="dev.alextren.Spot.Bitrate">
<value value="0" nick="96"/>
<value value="1" nick="160"/>
<value value="2" nick="320"/>
</enum>
<schema id="dev.alextren.Spot" path="/dev/alextren/Spot/">
<key name='prefers-dark-theme' type='b'>
<default>true</default>
<summary>Prefer dark theme</summary>
</key>
<key name="window-width" type="i">
<default>1080</default>
<summary>The width of the window</summary>
</key>
<key name="window-height" type="i">
<default>720</default>
<summary>The height of the window</summary>
</key>
<key name="window-is-maximized" type="b">
<default>false</default>
<summary>A flag to enable maximized mode</summary>
</key>
<key name='player-bitrate' enum='dev.alextren.Spot.Bitrate'>
<default>'160'</default>
<summary>Songs bitrate (96, 160, 320kbps)</summary>
</key>
<key name='audio-backend' enum='dev.alextren.Spot.AudioBackend'>
<default>'pulseaudio'</default>
<summary>Audio backend</summary>
</key>
<key name='alsa-device' type='s'>
<default>'default'</default>
<summary>Alsa device (if audio backend is 'alsa')</summary>
</key>
<key name='ap-port' type='u'>
<default>0</default>
<summary>Port to communicate with Spotify's server (access point). Setting to 0 (default) allows Spot to use servers running on any port.</summary>
</key>
</schema>
</schemalist>