diff options
author | theRealPadster | 2022-04-23 20:10:32 -0400 |
---|---|---|
committer | theRealPadster | 2022-04-23 20:10:32 -0400 |
commit | 2b45a55bfb4e3f1808b0012ae2bce606fbdc503a (patch) | |
tree | 742253cf76d9f3909fd7ca8d391ed6914ee9d53f | |
parent | 2ff3f4b27aefbe83dad6088f063bfd368837e7c2 (diff) | |
download | aur-2b45a55bfb4e3f1808b0012ae2bce606fbdc503a.tar.gz |
Fix the icon
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | PKGBUILD | 5 |
3 files changed, 7 insertions, 2 deletions
@@ -1,7 +1,7 @@ pkgbase = spotify-edge pkgdesc = A proprietary music streaming service. Edge version. pkgver = 1.1.83.954 - pkgrel = 1 + pkgrel = 2 url = https://www.spotify.com arch = x86_64 license = custom diff --git a/.gitignore b/.gitignore index eec7f6a68c26..65f3fda0e535 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ src/ pkg/ *.pkg.tar.zst *.snap +spotify/ +authy/ @@ -7,7 +7,7 @@ pkgname=spotify-edge pkgver=1.1.83.954 _commit=gd226dfe8 -pkgrel=1 +pkgrel=2 pkgdesc='A proprietary music streaming service. Edge version.' arch=('x86_64') url='https://www.spotify.com' @@ -50,6 +50,9 @@ package() { # Enable spotify to open URLs from the webapp sed -i 's/^Exec=.*/Exec=spotify --uri=%U/' "${pkgdir}"/opt/spotify/spotify.desktop + # Fix the icon + sed -i 's/^Icon=.*/Icon=spotify-client/' "${pkgdir}"/opt/spotify/spotify.desktop + # Desktop Entry install -Dm644 "${pkgdir}"/opt/spotify/spotify.desktop "${pkgdir}"/usr/share/applications/spotify.desktop |