aboutsummaryrefslogtreecommitdiffstats
path: root/mpd-notification.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into jozan-merge-masterJoe2022-05-021-6/+21
|\
| * update copyright for 2022Christian Hesse2022-01-031-1/+1
| |
| * fix flickering notification when unpausingfwsmit2021-03-161-1/+1
| | | | | | | | | | | | | | When last state is 'pause' we already have the correct icon, so no need to reset with generic icon. Signed-off-by: Christian Hesse <mail@eworm.de>
| * update copyright for 2021Christian Hesse2021-01-011-1/+1
| |
| * try $XDG_CONFIG_HOME/mpd-notification.conf firstmaxice82020-11-251-2/+6
| | | | | | | | Signed-off-by: Christian Hesse <mail@eworm.de>
| * clearly state the licenseChristian Hesse2020-11-251-2/+13
| |
* | My versionJoe2022-05-021-9/+5
|/
* update copyright for 2020Christian Hesse2020-01-281-1/+1
|
* this is condition, not loopChristian Hesse2019-10-101-1/+1
|
* drop retry code, just fail and let the service restartChristian Hesse2019-10-091-20/+3
|
* do not retry on exitChristian Hesse2019-10-081-1/+1
|
* update copyright for 2019Christian Hesse2019-01-011-1/+1
|
* show track information on pauseChristian Hesse2018-05-301-11/+6
|
* show a notification without image data firstChristian Hesse2018-05-301-1/+11
|
* use correct type for stateChristian Hesse2018-05-281-1/+2
|
* set notification timeout onceChristian Hesse2018-05-281-3/+2
|
* update for ffmpeg 4.xChristian Hesse2018-05-161-0/+2
| | | | | The function av_register_all() is deprecated since commit 0694d8702421e7aff1340038559c438b61bb30dd.
* update copyright for 2018Christian Hesse2018-01-021-1/+1
|
* try to scale with valid pixbuf onlyChristian Hesse2017-10-301-1/+1
|
* properly handly timeout valuesChristian Hesse2017-03-031-3/+3
| | | | | | The timeout value in the config file was expected to be in ms... Fixes #18
* do not disable artwork stuff for remote hostChristian Hesse2017-03-021-4/+0
| | | | | | | | Looks like people run mpd on remote host and have a copy (or net mount) with media and/or image files on local system. So do not disable artwork stuff for remote host. Fixes #16
* add compile time features to version stringChristian Hesse2017-03-021-1/+8
|
* notify systemd on stopChristian Hesse2017-01-061-0/+9
|
* make systemd optionalChristian Hesse2017-01-051-0/+8
|
* give some extra status informationChristian Hesse2017-01-051-3/+7
|
* use systemd service manager notificationChristian Hesse2017-01-051-0/+3
|
* update copyright for 2017Christian Hesse2017-01-041-1/+1
|
* string updatesChristian Hesse2016-10-101-10/+10
|
* add more error handlingChristian Hesse2016-10-101-6/+30
| | | | Signed-off-by: Christian Hesse <mail@eworm.de>
* allow option 'oneline' in config fileChristian Hesse2016-10-071-1/+2
|
* sort and complete help outputChristian Hesse2016-10-071-1/+1
|
* fix compilation without libavChristian Hesse2016-10-071-5/+7
|
* update error pathChristian Hesse2016-10-071-14/+20
|
* make libmagic initialization globalChristian Hesse2016-10-071-17/+20
|
* update verbose and error outputChristian Hesse2016-10-071-9/+9
|
* update verbose outputChristian Hesse2016-10-071-4/+12
|
* use libmagic to decide whether to search for media artworkChristian Hesse2016-10-071-11/+33
|
* support reading options from config fileChristian Hesse2016-10-051-0/+15
| | | | | | | | | | | | | This tries to read ~/.local/mpd-notification.conf, which is expected to look like this: host = localhost port = 6600 music-dir = /srv/media/music/ scale = 200 timeout = 20 Unused options can be commented or removed completely.
* add scale option to help outputChristian Hesse2016-10-051-1/+1
|
* add notification file workaroundChristian Hesse2016-10-051-3/+14
|
* keep aspect ratio when scalingChristian Hesse2016-10-051-1/+9
|
* allow to scale artwork imagesChristian Hesse2016-10-051-2/+17
|
* merge the artwork functionsChristian Hesse2016-10-051-52/+32
|
* do not handle image path, but always give pixbufChristian Hesse2016-10-051-20/+14
|
* always set imageChristian Hesse2016-10-041-2/+2
| | | | | Looks like libnotify does remember the image even if the notification is updated. So always set the image, it is cleared when called with NULL.
* Allow one line notificationsChristian Hesse2016-04-011-8/+20
| | | | This is related to #9.
* support local unix socketsRonnie P. Thomas2016-01-091-1/+1
| | | | Add support for using local AF_UNIX sockets as host
* update copyright for 2016Christian Hesse2016-01-041-1/+1
|
* read environment variables: MPD_HOST and MPD_PORTChristian Hesse2015-11-161-1/+9
| | | | Fixes #6
* free resources when nothing to be displayedChristian Hesse2015-11-161-1/+2
| | | | | We need to free our resources, otherwise subsequent calls will fail. Should fix #7