Update keybinds

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-05-22 17:01:46 +01:00
parent a2af7705ff
commit c233b5a11a
5 changed files with 65 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
HYPRLAND_DEVICE="$1"
export STATUS_FILE="$XDG_RUNTIME_DIR/touchpad.status"
enable_touchpad() {
echo -n "true" >"$STATUS_FILE"
hyprctl keyword "device[$HYPRLAND_DEVICE]:enabled" true
}
disable_touchpad() {
echo -n "false" >"$STATUS_FILE"
hyprctl keyword "device[$HYPRLAND_DEVICE]:enabled" false
}
if ! [ -f "$STATUS_FILE" ]; then
disable_touchpad
else
if [ "$(<"$STATUS_FILE")" = "true" ]; then
disable_touchpad
elif [ "$(<"$STATUS_FILE")" = "false" ]; then
enable_touchpad
fi
fi