feat: nvim config, suckless dwm and dmenu, toggle-touchpad script, removed wayland config. fix: clean up vim config, zshrc and alacrity

This commit is contained in:
AngeD 2021-12-23 18:21:09 +01:00
parent 8710038c12
commit 2d6cd5e5ed
23 changed files with 190 additions and 571 deletions

7
bin/toggle-touchpad Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/bash
device="PNP0C50:0e 06CB:7E7E Touchpad"
enabled=$(xinput list-props "$device" | awk -F ':' '$1 ~ "Device Enabled" {print $2}')
xinput set-prop "$device" "Device Enabled" "$((1 - enabled))"