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:
parent
8710038c12
commit
2d6cd5e5ed
23 changed files with 190 additions and 571 deletions
7
bin/toggle-touchpad
Executable file
7
bin/toggle-touchpad
Executable 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))"
|
Loading…
Add table
Add a link
Reference in a new issue