From a5c82295413db6a11e88bd51f8d923c5d473fd9c Mon Sep 17 00:00:00 2001 From: Tio TROM Date: Thu, 22 Sep 2022 00:44:49 +0200 Subject: [PATCH 1/2] added zafiro icon fix --- PKGBUILD | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 751933a..1e49c95 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,8 +17,9 @@ depends=('xfce4-appfinder' provides=('tromjaro-fixes') backup=() options=(!strip) +source=('scalable.zip::https://www.drive.tromsite.com/s/y8Gm7q6wLrXmtEN/download') +sha256sums=('SKIP') install='fixes-package.install' - prepare() { cp -R ../bin ../flatpak-overrides ../alpm-hooks ../systemd . } @@ -40,4 +41,12 @@ package() { # copy systemd units install -d ${pkgdir}/usr/lib/systemd/user install -Dm644 ${srcdir}/systemd/services/* ${pkgdir}/usr/lib/systemd/user + + # copy icons + install -d ${pkgdir}/usr/share/icons/zafiro-dark/apps/scalable + install -Dm644 ${srcdir}/scalable/* ${pkgdir}/usr/share/icons/zafiro-dark/apps/scalable + + # copy icons dark + install -d ${pkgdir}/usr/share/icons/zafiro/apps/scalable + install -Dm644 ${srcdir}/scalable/* ${pkgdir}/usr/share/icons/zafiro/apps/scalable } From 4a7333bbdb186ff9eb268b7826707f211ba9c83d Mon Sep 17 00:00:00 2001 From: Tio TROM Date: Thu, 22 Sep 2022 01:22:26 +0200 Subject: [PATCH 2/2] Update 'PKGBUILD' --- PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 1e49c95..20a3262 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -42,11 +42,11 @@ package() { install -d ${pkgdir}/usr/lib/systemd/user install -Dm644 ${srcdir}/systemd/services/* ${pkgdir}/usr/lib/systemd/user - # copy icons - install -d ${pkgdir}/usr/share/icons/zafiro-dark/apps/scalable - install -Dm644 ${srcdir}/scalable/* ${pkgdir}/usr/share/icons/zafiro-dark/apps/scalable + # copy icons dark + install -d ${pkgdir}/$HOME/.local/share/icons/zafiro-dark/apps/scalable + install -Dm644 ${srcdir}/scalable/* ${pkgdir}/$HOME/.local/share/icons/zafiro-dark/apps/scalable - # copy icons dark - install -d ${pkgdir}/usr/share/icons/zafiro/apps/scalable - install -Dm644 ${srcdir}/scalable/* ${pkgdir}/usr/share/icons/zafiro/apps/scalable + # copy icons + install -d ${pkgdir}/$HOME/.local/share/icons/zafiro/apps/scalable + install -Dm644 ${srcdir}/scalable/* ${pkgdir}/$HOME/.local/share/icons/zafiro/apps/scalable }