From 8e20389ce238d979e6cb9253643bc181d698f5a9 Mon Sep 17 00:00:00 2001 From: azahi Date: Sat, 13 Oct 2018 14:12:30 +0300 Subject: Huge update, yet again Move to ~/.xmonad Completely redo directory structure Remove Test.hs with xmonad-ng-test because it breaks cabal Add headers for new files Add proper "copyright" entries and mention upstream xmonad developers Other minor fixes --- scripts/toggle-touchpad.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/toggle-touchpad.sh (limited to 'scripts/toggle-touchpad.sh') diff --git a/scripts/toggle-touchpad.sh b/scripts/toggle-touchpad.sh new file mode 100755 index 0000000..5a30528 --- /dev/null +++ b/scripts/toggle-touchpad.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +ID=$(xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}') +STATE=$(xinput list-props "$ID" | awk '/Device Enabled/ {print $4}') + +if [ "$STATE" -eq 1 ] +then + xinput disable "$ID" +else + xinput enable "$ID" +fi -- cgit 1.4.1