From f5f922970ef71392b2e5c7a8a7d7507956da123a Mon Sep 17 00:00:00 2001 From: Andrew Titmuss Date: Sat, 26 Mar 2016 11:42:55 +1100 Subject: [PATCH 1/2] Changelog added note about Google Play Music Desktop Player --- 1.6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1.6.md b/1.6.md index 37954e99..3f19ff72 100644 --- a/1.6.md +++ b/1.6.md @@ -38,6 +38,7 @@ Thanks to the following people for contributing this release. **Song**
- [ MPD ] Fixed function when mpd is running on another PC and not your own. +- Added support for Google Play Music Desktop Player (adds optional dependency of [`gpmdp-bash`](https://github.com/iandrewt/gpmdp-bash)) **[@iandrewt](https://github.com/iandrewt)** **Disk**
- Added new display option `perc` to display just the percentage with the progress bar. From 044ee726198075a0c2759bdd2d22181e73208b41 Mon Sep 17 00:00:00 2001 From: Andrew Titmuss Date: Sat, 26 Mar 2016 11:49:43 +1100 Subject: [PATCH 2/2] fixed if statement for linux resolution --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index dcc22971..c8494b61 100755 --- a/neofetch +++ b/neofetch @@ -1285,7 +1285,7 @@ getresolution () { esac resolution=${resolution//\*} - elif type -p xdpyinfo >/dev/null 2>&1 && \ + elif type -p xdpyinfo >/dev/null 2>&1; then resolution=$(xdpyinfo 2>/dev/null | awk '/dimensions:/ {printf $2}') fi ;;