Cleanup and update stuff

This commit is contained in:
Tobias Reisinger 2023-07-02 13:42:44 +02:00
parent 8364becef3
commit b9d5b166f4
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
25 changed files with 253 additions and 93 deletions

39
arch-X11/PKGBUILD Normal file
View file

@ -0,0 +1,39 @@
# 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

View file

@ -0,0 +1,7 @@
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "de"
Option "XkbOptions" "caps:none"
Option "XkbOptions" "compose:menu"
EndSection

View file

@ -0,0 +1,7 @@
Section "InputClass"
Identifier "libinput pointer catchall"
Driver "libinput"
MatchIsPointer "yes"
Option "AccelProfile" "flat"
Option "AccelSpeed" "0"
EndSection