From 73e31b79de25298a519671ef8b6c2ab68af9c87e Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sat, 20 Jul 2024 20:18:30 +0400 Subject: directory layout changed --- src/scripts/sTouchpad | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 src/scripts/sTouchpad (limited to 'src/scripts/sTouchpad') diff --git a/src/scripts/sTouchpad b/src/scripts/sTouchpad deleted file mode 100755 index 87c0000..0000000 --- a/src/scripts/sTouchpad +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -# Wrapper script for activating and deactivating touchpad - -[ -d ~/.cache ] || { mkdir ~/.cache || { echo "Couldn't create ~/.cache " && exit 2; };} - -file=~/.cache/touchpad_on - -if [ -f $file ];then - rm $file - xinput disable "$(xinput list --name-only | grep Touchpad)" && nsend Touchpad Disabled -else - touch $file - xinput enable "$(xinput list --name-only | grep Touchpad)" && nsend Touchpad Enabled -fi -- cgit v1.2.3