Cleanup and update stuff
This commit is contained in:
parent
8364becef3
commit
b9d5b166f4
25 changed files with 253 additions and 93 deletions
39
arch-X11/PKGBUILD
Normal file
39
arch-X11/PKGBUILD
Normal 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
|
7
arch-X11/etc_X11_xorg.conf.d_10-keyboard.conf
Normal file
7
arch-X11/etc_X11_xorg.conf.d_10-keyboard.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
Section "InputClass"
|
||||
Identifier "system-keyboard"
|
||||
MatchIsKeyboard "on"
|
||||
Option "XkbLayout" "de"
|
||||
Option "XkbOptions" "caps:none"
|
||||
Option "XkbOptions" "compose:menu"
|
||||
EndSection
|
7
arch-X11/etc_X11_xorg.conf.d_50-mouse-acceleration.conf
Normal file
7
arch-X11/etc_X11_xorg.conf.d_50-mouse-acceleration.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
Section "InputClass"
|
||||
Identifier "libinput pointer catchall"
|
||||
Driver "libinput"
|
||||
MatchIsPointer "yes"
|
||||
Option "AccelProfile" "flat"
|
||||
Option "AccelSpeed" "0"
|
||||
EndSection
|
Loading…
Add table
Add a link
Reference in a new issue