feat(installer): install evdev-rce for touchscreen long-press right-click

Reverts incorrect touch_long_press_time option (not a real Hyprland setting).
Adds evdev-right-click-emulation install + systemd enable to the tablet (T)
eww bar selection in the hyprlua installer.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
Amir Alexander Abdelbaki 2026-06-02 15:43:48 +02:00
parent 128bdc7d4f
commit 814080cc04
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,6 @@ hl.config({
left_handed = true, left_handed = true,
follow_mouse = 1, follow_mouse = 1,
sensitivity = 0, sensitivity = 0,
touch_long_press_time = 400,
touchpad = { touchpad = {
natural_scroll = false, natural_scroll = false,
}, },

View File

@ -51,7 +51,9 @@ echo
case $doit in case $doit in
n|N) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww/ ~/.config/ ;; n|N) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww/ ~/.config/ ;;
p|P) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww-nobattery/ ~/.config/eww ;; p|P) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww-nobattery/ ~/.config/eww ;;
t|T) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww-touch/ ~/.config/eww ;; t|T) cp -rf ~/Dotfiles/desktopenvs/hyprlua/eww-touch/ ~/.config/eww
yay -S evdev-right-click-emulation
sudo systemctl enable --now evdev-rce.service ;;
*) warn "No valid choice — skipping EWW copy. Run manually later." ;; *) warn "No valid choice — skipping EWW copy. Run manually later." ;;
esac esac