Dotfiles/desktopenvs/hyprlua/scripts/hyprland-toggle-touchpad.sh

26 lines
618 B
Bash
Executable File

#!/usr/bin/env bash
export STATUS_FILE="$XDG_RUNTIME_DIR/keyboard.status"
enable_keyboard() {
printf "true" >"$STATUS_FILE"
notify-send -u normal "Enabling Touchpad"
hyprctl keyword 'device[synaptics-tm3053-009]:enabled' "true"
}
disable_keyboard() {
printf "false" >"$STATUS_FILE"
notify-send -u normal "Disabling Touchpad"
hyprctl keyword 'device[synaptics-tm3053-009]:enabled' "false"
}
if ! [ -f "$STATUS_FILE" ]; then
enable_keyboard
else
if [ $(cat "$STATUS_FILE") = "true" ]; then
disable_keyboard
elif [ $(cat "$STATUS_FILE") = "false" ]; then
enable_keyboard
fi
fi