forked from wildeyedskies/stmp
-
Notifications
You must be signed in to change notification settings - Fork 6
/
help_text.go
62 lines (55 loc) · 1.41 KB
/
help_text.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2023 The STMPS Authors
// SPDX-License-Identifier: GPL-3.0-only
package main
const helpPlayback = `
p play/pause
P stop
> next song
-/=(+) volume down/volume up
,/. seek -10/+10 seconds
r add 50 random songs to queue
s start server library scan
`
const helpPageBrowser = `
artist tab
R refresh the list
/ Search artists
a Add all artist songs to queue
n Continue search forward
N Continue search backwards
song tab
ENTER play song (clears current queue)
a add album or song to queue
A add song to playlist
y toggle star on song/album
R refresh the list
ESC Close search
`
const helpPageQueue = `
d/DEL remove currently selected song from the queue
D remove all songs from queue
y toggle star on song
k move selected song up in queue
j move selected song down in queue
s save queue as a playlist
S shuffle the current queue
l load last queue from server
`
const helpPagePlaylists = `
n new playlist
d delete playlist
a add playlist or song to queue
`
const helpSearchPage = `
artist, album, or song column
Down/Up navigate within the column
Left previous column
Right next column
Enter/a recursively add item to quue
/ start search
search field
Enter search for text
Esc cancel search
Note: unlike browser, columns navigate
search results, not selected items.
`