350fb4fe59
Profile-based dotfiles with switchable color themes. Structure: profiles/ with themes/ and config/ per profile.
14 lines
355 B
Bash
Executable File
14 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
DEVICE="htix5288:00-0911:5288-touchpad"
|
|
STATE_FILE="/tmp/touchpad-disabled"
|
|
|
|
if [ -f "$STATE_FILE" ]; then
|
|
hyprctl keyword "device[$DEVICE]:enabled" true
|
|
rm "$STATE_FILE"
|
|
notify-send "Touchpad" "Aktiviert"
|
|
else
|
|
hyprctl keyword "device[$DEVICE]:enabled" false
|
|
touch "$STATE_FILE"
|
|
notify-send "Touchpad" "Deaktiviert"
|
|
fi
|