systems/arch-X11/PKGBUILD

40 lines
725 B
Bash
Raw Normal View History

2023-07-02 11:42:44 +00:00
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
# shellcheck disable=SC2034
pkgname=serguzim-system-X11
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=("any")
url="https://git.serguzim.me/serguzim/system"
license=("unknown")
groups=()
depends=(
### XORG
"xorg-server" "xorg-server-xvfb" "xorg-xfd" "xorg-xinit"
"xorg-xinput" "xorg-xlsclients" "xorg-xmodmap"
"numlockx"
### APPLICATIONS
"bspwm"
#"sxhkd" "polybar"
)
source=(
"etc_X11_xorg.conf.d_10-keyboard.conf"
"etc_X11_xorg.conf.d_50-mouse-acceleration.conf"
)
sha256sums=(
"SKIP"
"SKIP"
)
backup=()
. ../utils.sh
package() {
_system_install "etc/X11/xorg.conf.d/10-keyboard.conf"
_system_install "etc/X11/xorg.conf.d/50-mouse-acceleration.conf"
}
# vim: ft=sh