From 7e19bd16b48bd009a3b4d0f029c445bb49d95615 Mon Sep 17 00:00:00 2001 From: azahi Date: Wed, 3 Oct 2018 14:30:31 +0300 Subject: Move to 0.15 Fix windows not showing with fullscreen hooks Add misc directory with stuff that should be moved to ~/.xmonad Switch indentation style Add submodules --- misc/bin/toggle-trackpoint.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 misc/bin/toggle-trackpoint.sh (limited to 'misc/bin/toggle-trackpoint.sh') diff --git a/misc/bin/toggle-trackpoint.sh b/misc/bin/toggle-trackpoint.sh new file mode 100755 index 0000000..b0b3501 --- /dev/null +++ b/misc/bin/toggle-trackpoint.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +ID=$(xinput list | grep -Eo 'TrackPoint\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