summaryrefslogtreecommitdiff
path: root/bin/touchpad
blob: 17649fab9ccd22cb96fa112b1a8946f092cffffc (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/env bash

# Touchpad status
status=$(synclient -l | grep TouchpadOff)
if [[ $status = *1 ]]; then
    synclient TouchpadOff=0
elif [[ $status = *0 ]]; then
    synclient TouchpadOff=1
fi