Which component should hardware hotkey issues be filed against?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I've recently obtained a ThinkPad T430 and noticed that the Fn+F5 hotkey for toggling WLAN/BT does not work. If I'm not mistaken, the acpid package is the legacy way of doing things (on my previous T400, I didn't even have it installed), so which component is responsible nowadays for handling these things?

Thanks,
Sandro

PS: A workaround for the issue is to install acpid and add an acpi handler:

$ cat > /etc/acpi/events/fnf5conf <<EOF
# Handle Fn+F5 to toggle BT/WLAN

event=button/wlan
action=/etc/acpi/actions/fnf5handler.sh "%e"
EOF

$ cat > /etc/acpi/actions/fnf5handler.sh <<EOF
#!/bin/bash
ACTION="disable"
grep -q "disabled" "/proc/acpi/ibm/bluetooth" && ACTION="enable"
echo -n \$ACTION > "/proc/acpi/ibm/bluetooth"
echo -n \$ACTION > "/proc/acpi/ibm/wan"
--
test mailing list
test@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe:
https://admin.fedoraproject.org/mailman/listinfo/test




[Index of Archives]     [Fedora Desktop]     [Fedora SELinux]     [Photo Sharing]     [Yosemite Forum]     [KDE Users]

  Powered by Linux