blob: f0523883279acdd5824d86dd407bd2fd0225bf42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/usr/bin/env sh
[ -r ~/.config/X11/Xkeymap ] && xkbcomp ~/.config/X11/Xkeymap "$DISPLAY"
setlayout() {
ids=$(xinput --list | sed -ne '/Virtual core keyboard/{:a' -e 'n;p;ba' -e '}' | grep "$1" | sed -n 's/.*id=\([0-9]\+\).*/\1/p')
for i in $ids; do
setxkbmap -device "$i" -layout "$2"
done
}
setmodmap() {
kbds=$(xinput --list | sed -ne '/Virtual core keyboard/{:a' -e 'n;p;ba' -e '}' | grep "$1" | sed -n 's/.*id=\([0-9]\+\).*/\1/p')
if [ "$kbds" ]; then
xmodmap ~/.config/X11/Xmodmap
fi
}
if [ "$(uname -n)" = "halley2" ]; then
setxkbmap -layout pt
elif [ "$(uname -n)" = "hercules" ]; then
setxkbmap -layout es
fi
setxkbmap -option "caps:escape"
xset r rate 250 30
setlayout "Kingston HyperX Alloy FPS Pro Mechanical Gaming Keyboard" us
# setlayout "SONiX USB DEVICE" us
setlayout "SEMITEK USB-HID Gaming Keyboard" us
# setmodmap "SEMITEK USB-HID Gaming Keyboard"
setlayout "Dierya DK61 Keyboard" us
# setmodmap "Dierya DK61 Keyboard"
xmodmap ~/.config/X11/Xmodmap
if [ "$(uname -n)" = "hercules" ]; then
xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Tapping Enabled" 1
xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Natural Scrolling Enabled" 1
ids=$(xinput --list | sed -ne '/Virtual core pointer/{:a' -e 'n;p;ba' -e '}' | grep "Kingsis Peripherals ZOWIE Gaming mouse" | sed -n 's/.*id=\([0-9]\+\).*/\1/p')
for i in $ids; do
xinput --set-prop "$i" 'libinput Accel Profile Enabled' 0, 1
done
elif [ "$(uname -n)" = "halley2" ]; then
xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Tapping Enabled" 1
xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Natural Scrolling Enabled" 1
fi
|