refactor: new system basics

This commit is contained in:
2025-05-29 18:18:25 +02:00
parent f4ea18dc1a
commit c0ca42d166
92 changed files with 190009 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Author by : Daniel Heras
# Mail : dani.heras@hotmail.com
id=$(xinput list | grep Touchpad | awk '{print $6}' | grep -o '[0-9]\+')
prop=$(xinput list-props $id | grep "Device Enabled (" | awk '{print $3}' | grep -o '[0-9]\+')
val=$(xinput list-props $id | grep "Device Enabled (" | awk '{print $4}' | grep -o '[0-9]\+')
if [ $val = 0 ]; then
echo "%{F#ce4257}"
else
echo "%{F#40916c}"
fi