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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* Copyright (C) 2025 awy <awy@awy.one>
stmusic is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.
stmusic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public
License along with stmusic. If not, see
<https://www.gnu.org/licenses/>. */
#include <mpd/client.h>
#include <stdio.h>
int
main(void)
{
struct mpd_connection *conn;
struct mpd_status *status;
struct mpd_song *song;
// Connect to MPD (default: localhost:6600)
conn = mpd_connection_new(NULL, 0, 30000);
if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS) {
fprintf(stderr, "MPD connection error: %s\n",
mpd_connection_get_error_message(conn));
return 1;
}
// Get MPD status
status = mpd_run_status(conn);
if (!status) {
fprintf(stderr, "Failed to get status: %s\n",
mpd_connection_get_error_message(conn));
mpd_connection_free(conn);
return 1;
}
enum mpd_state st = mpd_status_get_state(status);
// Don't print anything if mpd is stopped
if (st == MPD_STATE_STOP) {
return 0;
}
if (st == MPD_STATE_PAUSE) { printf(" "); };
// Get current song
song = mpd_run_current_song(conn);
if (song) {
const char *artist = mpd_song_get_tag(song, MPD_TAG_ARTIST, 0);
const char *title = mpd_song_get_tag(song, MPD_TAG_TITLE, 0);
printf("%s - %s",
artist ? artist : "unknown",
title ? title : "unknown");
mpd_song_free(song);
}
if (mpd_status_get_repeat(status)) { printf(" "); };
if (mpd_status_get_random(status)) { printf(" "); };
enum mpd_consume_state consumest = mpd_status_get_consume_state(status);
switch (consumest) {
case MPD_CONSUME_ONESHOT:
printf(" ");
break;
case MPD_CONSUME_ON:
printf(" ");
break;
case MPD_CONSUME_UNKNOWN:
break;
case MPD_CONSUME_OFF:
break;
}
enum mpd_single_state singlest = mpd_status_get_single_state(status);
switch (singlest) {
case MPD_SINGLE_ONESHOT:
printf(" ");
break;
case MPD_SINGLE_ON:
printf(" ");
break;
case MPD_CONSUME_UNKNOWN:
break;
case MPD_CONSUME_OFF:
break;
}
mpd_status_free(status);
mpd_connection_free(conn);
return 0;
}
|