mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
21 lines
441 B
Bash
21 lines
441 B
Bash
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
|
_pkgname=xfce4-hidpi
|
|
_reponame=arch
|
|
pkgname="de-p1st-$_pkgname"
|
|
pkgver=0.0.1
|
|
pkgrel=1
|
|
pkgdesc="HiDPI for XFCE4"
|
|
arch=('any')
|
|
url="https://codeberg.org/privacy1st/${_reponame}"
|
|
license=('MIT')
|
|
install='.install'
|
|
|
|
depends=(de-p1st-xfce4)
|
|
|
|
package() {
|
|
cd "${_reponame}/pkg/${pkgname}"
|
|
|
|
# .install modifies xfconf values
|
|
|
|
install -Dm0644 99_hidpi.sh "$pkgdir"/etc/profile.d/99_hidpi.sh
|
|
} |