initial commit - add files

This commit is contained in:
shark
2018-10-30 16:54:46 -05:00
commit ab8185db55
43 changed files with 1081 additions and 0 deletions

View File

@ -0,0 +1,14 @@
function tp
if test $touchpadEnabled = 1
set touchpadEnabled 0
echo Disabled Trackpad
xinput disable "Atmel maXTouch Touchpad"
unclutter --timeout 0 &
else
set touchpadEnabled 1
echo Enabled Trackpad
xinput enable "Atmel maXTouch Touchpad"
kill (jobs -c | grep unclutter) 2>/dev/null
end
end