LED on keyboard don't light on Thinkapd t480s
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
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.
keyboard lenovo thinkpad
add a comment |Â
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.
keyboard lenovo thinkpad
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
add a comment |Â
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.
keyboard lenovo thinkpad
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
keyboard lenovo thinkpad
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
add a comment |Â
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
add a comment |Â
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.
add a comment |Â
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.
add a comment |Â
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.
add a comment |Â
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.
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.
answered Apr 2 at 0:38
Joeri_Damian
113
113
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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