LED on keyboard don't light on Thinkapd t480s

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












Does anybody have an idea why mute and microphone LEDs on my Lenovo Thinkpad t480s do not light in Ubuntu 16.04.4 LTS?



Tips are appreciated.










share|improve this question





















  • It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
    – Luckyrings
    Apr 2 at 8:30














up vote
0
down vote

favorite












Does anybody have an idea why mute and microphone LEDs on my Lenovo Thinkpad t480s do not light in Ubuntu 16.04.4 LTS?



Tips are appreciated.










share|improve this question





















  • It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
    – Luckyrings
    Apr 2 at 8:30












up vote
0
down vote

favorite









up vote
0
down vote

favorite











Does anybody have an idea why mute and microphone LEDs on my Lenovo Thinkpad t480s do not light in Ubuntu 16.04.4 LTS?



Tips are appreciated.










share|improve this question













Does anybody have an idea why mute and microphone LEDs on my Lenovo Thinkpad t480s do not light in Ubuntu 16.04.4 LTS?



Tips are appreciated.







keyboard lenovo thinkpad






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 1 at 23:38









Luckyrings

141111




141111











  • It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
    – Luckyrings
    Apr 2 at 8:30
















  • It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
    – Luckyrings
    Apr 2 at 8:30















It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
– Luckyrings
Apr 2 at 8:30




It doesn't work on kernel 4.13.0-37-generic ; but after an mainline kernel upgrade to kernel version 4.15.15 it works now.
– Luckyrings
Apr 2 at 8:30










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Run the following in the terminal



acpi_listen


Now press the button mute button.
Then give use the results likely something like this:



ibm/hotkey HKEY 00000080 0000101b


Then open up nano or another text editor.




nano /etc/acpi/events/lenovo-mutemic




And adjust the following for your hotkey.



event=ibm/hotkey HKEY 00000080 0000101b
action=/etc/acpi/lenovo-mutemic.sh


Then we need to make a shells script.



 #!/bin/bash
INPUT_DEVICE="'Internal Mic'"
YOUR_USERNAME="place_your_username_here"
if amixer sget $INPUT_DEVICE,0 | grep '[on]' ; then
amixer sset $INPUT_DEVICE,0 toggle
echo "0 blink" > /proc/acpi/ibm/led
su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
-i microphone-sensitivity-muted-symbolic "Mic MUTED"'
else
amixer sset $INPUT_DEVICE,0 toggle
su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
-i microphone-sensitivity-high-symbolic "Mic ON"'
echo "0 on" > /proc/acpi/ibm/led
fi


Now let's just make it excutable and restart the service.




sudo chmod +x /etc/acpi/lenovo-mutemic.sh



sudo service acpid restart




There are some other methods but this would likely fix the issue.






share|improve this answer




















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1021177%2fled-on-keyboard-dont-light-on-thinkapd-t480s%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Run the following in the terminal



    acpi_listen


    Now press the button mute button.
    Then give use the results likely something like this:



    ibm/hotkey HKEY 00000080 0000101b


    Then open up nano or another text editor.




    nano /etc/acpi/events/lenovo-mutemic




    And adjust the following for your hotkey.



    event=ibm/hotkey HKEY 00000080 0000101b
    action=/etc/acpi/lenovo-mutemic.sh


    Then we need to make a shells script.



     #!/bin/bash
    INPUT_DEVICE="'Internal Mic'"
    YOUR_USERNAME="place_your_username_here"
    if amixer sget $INPUT_DEVICE,0 | grep '[on]' ; then
    amixer sset $INPUT_DEVICE,0 toggle
    echo "0 blink" > /proc/acpi/ibm/led
    su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
    -i microphone-sensitivity-muted-symbolic "Mic MUTED"'
    else
    amixer sset $INPUT_DEVICE,0 toggle
    su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
    -i microphone-sensitivity-high-symbolic "Mic ON"'
    echo "0 on" > /proc/acpi/ibm/led
    fi


    Now let's just make it excutable and restart the service.




    sudo chmod +x /etc/acpi/lenovo-mutemic.sh



    sudo service acpid restart




    There are some other methods but this would likely fix the issue.






    share|improve this answer
























      up vote
      0
      down vote













      Run the following in the terminal



      acpi_listen


      Now press the button mute button.
      Then give use the results likely something like this:



      ibm/hotkey HKEY 00000080 0000101b


      Then open up nano or another text editor.




      nano /etc/acpi/events/lenovo-mutemic




      And adjust the following for your hotkey.



      event=ibm/hotkey HKEY 00000080 0000101b
      action=/etc/acpi/lenovo-mutemic.sh


      Then we need to make a shells script.



       #!/bin/bash
      INPUT_DEVICE="'Internal Mic'"
      YOUR_USERNAME="place_your_username_here"
      if amixer sget $INPUT_DEVICE,0 | grep '[on]' ; then
      amixer sset $INPUT_DEVICE,0 toggle
      echo "0 blink" > /proc/acpi/ibm/led
      su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
      -i microphone-sensitivity-muted-symbolic "Mic MUTED"'
      else
      amixer sset $INPUT_DEVICE,0 toggle
      su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
      -i microphone-sensitivity-high-symbolic "Mic ON"'
      echo "0 on" > /proc/acpi/ibm/led
      fi


      Now let's just make it excutable and restart the service.




      sudo chmod +x /etc/acpi/lenovo-mutemic.sh



      sudo service acpid restart




      There are some other methods but this would likely fix the issue.






      share|improve this answer






















        up vote
        0
        down vote










        up vote
        0
        down vote









        Run the following in the terminal



        acpi_listen


        Now press the button mute button.
        Then give use the results likely something like this:



        ibm/hotkey HKEY 00000080 0000101b


        Then open up nano or another text editor.




        nano /etc/acpi/events/lenovo-mutemic




        And adjust the following for your hotkey.



        event=ibm/hotkey HKEY 00000080 0000101b
        action=/etc/acpi/lenovo-mutemic.sh


        Then we need to make a shells script.



         #!/bin/bash
        INPUT_DEVICE="'Internal Mic'"
        YOUR_USERNAME="place_your_username_here"
        if amixer sget $INPUT_DEVICE,0 | grep '[on]' ; then
        amixer sset $INPUT_DEVICE,0 toggle
        echo "0 blink" > /proc/acpi/ibm/led
        su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
        -i microphone-sensitivity-muted-symbolic "Mic MUTED"'
        else
        amixer sset $INPUT_DEVICE,0 toggle
        su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
        -i microphone-sensitivity-high-symbolic "Mic ON"'
        echo "0 on" > /proc/acpi/ibm/led
        fi


        Now let's just make it excutable and restart the service.




        sudo chmod +x /etc/acpi/lenovo-mutemic.sh



        sudo service acpid restart




        There are some other methods but this would likely fix the issue.






        share|improve this answer












        Run the following in the terminal



        acpi_listen


        Now press the button mute button.
        Then give use the results likely something like this:



        ibm/hotkey HKEY 00000080 0000101b


        Then open up nano or another text editor.




        nano /etc/acpi/events/lenovo-mutemic




        And adjust the following for your hotkey.



        event=ibm/hotkey HKEY 00000080 0000101b
        action=/etc/acpi/lenovo-mutemic.sh


        Then we need to make a shells script.



         #!/bin/bash
        INPUT_DEVICE="'Internal Mic'"
        YOUR_USERNAME="place_your_username_here"
        if amixer sget $INPUT_DEVICE,0 | grep '[on]' ; then
        amixer sset $INPUT_DEVICE,0 toggle
        echo "0 blink" > /proc/acpi/ibm/led
        su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
        -i microphone-sensitivity-muted-symbolic "Mic MUTED"'
        else
        amixer sset $INPUT_DEVICE,0 toggle
        su $YOUR_USERNAME -c 'DISPLAY=":0.0" notify-send -t 50
        -i microphone-sensitivity-high-symbolic "Mic ON"'
        echo "0 on" > /proc/acpi/ibm/led
        fi


        Now let's just make it excutable and restart the service.




        sudo chmod +x /etc/acpi/lenovo-mutemic.sh



        sudo service acpid restart




        There are some other methods but this would likely fix the issue.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 2 at 0:38









        Joeri_Damian

        113




        113



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1021177%2fled-on-keyboard-dont-light-on-thinkapd-t480s%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491