Keine Ahnung, wie sich das r da reingeschmuggelt hat.
Laptop? Touchpad? Hemdsärmel? Der touchpad-indicator ist nicht installierbar?
Hier mein Tipp fürs gute Linux… Muss leider individuell angepasst werden…
#!/bin/bash
read TPdevice <<< $( xinput | sed -nre '/TouchPad|Touchpad/s/.*id=([0-9]*).*/\1/p' )
state=$( xinput list-props "$TPdevice" | grep "Device Enabled" | grep -o "[01]$" )
if [ "$state" -eq '1' ];then
if xinput --disable "$TPdevice"; then
notify-send -i emblem-nowrite "Touchpad" "Disabled"
cp /usr/share/icons/Numix/24/status/touchpad-indicator-light-disabled.svg ~/.local/touchpad.svg
mv ~/.config/xfce4/panel/launcher-28/* ~/.config/xfce4/panel/launcher-28/disabled.desktop
fi
else
if xinput --enable "$TPdevice"; then
notify-send -i emblem-nowrite "Touchpad" "Enabled"
cp /usr/share/icons/Numix/24/status/touchpad-indicator-light-enabled.svg ~/.local/touchpad.svg
mv ~/.config/xfce4/panel/launcher-28/* ~/.config/xfce4/panel/launcher-28/enabled.desktop
fi
fi
Die zugehörige Desktop-Datei:
[Desktop Entry]
Version=1.0
Type=Application
Exec=/home/fastix/bin/toggleTouchpad
Icon=/home/fastix/.local/touchpad.svg
StartupNotify=true
Terminal=false
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
OnlyShowIn=XFCE;
Name=Enable or disable the touchpad
Name[de]=Touchpad an oder abschalten
Comment=
Comment[de]=
Keywords=run;command
Keywords[de]=ausführen;Befehl
X-XFCE-Source=
Path=