[UPDATE][SHELL] Notify on touchpad toggle
A low priority notification is displayed when enabling/disbling the touchpad with i3's key-binding and/or te script.
This commit is contained in:
parent
65a8a2f4a3
commit
13e52c1670
|
@ -6,6 +6,8 @@ state=$(xinput list-props "$device" | grep "Device Enabled" | grep -o "[01]$")
|
||||||
|
|
||||||
if [ "$state" == "1" ];then
|
if [ "$state" == "1" ];then
|
||||||
xinput --disable "$device"
|
xinput --disable "$device"
|
||||||
|
notify-send -u low "Toggled touchpad (disabled)"
|
||||||
else
|
else
|
||||||
xinput --enable "$device"
|
xinput --enable "$device"
|
||||||
|
notify-send -u low "Toggled touchpad (enabled)"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue