[Hardware] Scroll Lock键开关键盘灯无效 Resolved
Tofloor
poster avatar
里昂
deepin
2023-09-18 06:10
Author

Scroll Lock键在home键上方

我的键盘在windows系统或在引导页面是可以按Scroll Lock键打开键盘灯的。

但是进入deepin系统后键盘灯就关了,而且按Scroll Lock键后没有任何反映。

由大神 Ziggy 提醒
使用 xset led named 'Scroll Lock'命令打开键盘灯
使用 xset -led named 'Scroll Lock'命令关闭键盘灯

如何需要可以设置键盘映射。

Reply Favorite View the author
All Replies
fax928
deepin
2023-09-18 06:26
#1

我这边也是,v23 9月15内测更新版,是bug。

Reply View the author
阿尼樱奈奈
Moderator
2023-09-18 06:28
#2

这个在20.9和23都有

Reply View the author
里昂
deepin
2023-09-18 06:45
#3
阿尼樱奈奈

这个在20.9和23都有

哦,坐等更新。等v23正式版好久了。

Reply View the author
Ziggy
deepin
2023-09-18 06:49
#4

要键盘支持linux驱动才可以直接用的,不然得映射

#!/bin/bash
status=/tmp/keyboard_led_status  
if [[ ${1} == "on" ]] || [[ ! -e ${status} ]]; then  
    xset led named 'Scroll Lock' && echo "on" > ${status}  
else  
    xset -led named 'Scroll Lock' && rm -f ${status}  
fi
Reply View the author
里昂
deepin
2023-09-18 07:02
#5
Ziggy

要键盘支持linux驱动才可以直接用的,不然得映射

#!/bin/bash
status=/tmp/keyboard_led_status  
if [[ ${1} == "on" ]] || [[ ! -e ${status} ]]; then  
    xset led named 'Scroll Lock' && echo "on" > ${status}  
else  
    xset -led named 'Scroll Lock' && rm -f ${status}  
fi

大神太厉害了。感谢大神,我用直接用 xset led named 'Scroll Lock' 打开了。

Reply View the author
dgmenghuan
deepin
2023-09-18 15:34
#6

tail

Reply View the author