Re-Organize Dotfiles into Separate Stow Packages

This commit is contained in:
Sravan Balaji
2024-05-27 08:51:51 -04:00
parent 0dc5db0fcb
commit cb63752e5d
196 changed files with 594 additions and 2478 deletions

11
trackpad/.scripts/trackpad.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
trackpad_id=13
if xinput list-props $trackpad_id | grep "Device Enabled (.*):.*1" >/dev/null
then
xinput disable $trackpad_id
notify-send -u low -i mouse "Trackpad disabled"
else
xinput enable $trackpad_id
notify-send -u low -i mouse "Trackpad enabled"
fi