web-dev-qa-db-fra.com

La touche Numlock s’éteint lorsque vous changez de langue avec super + espace

À chaque fois que je change de langue anglaise, mon voyant Num Lock s’éteint, même si je peux toujours l’utiliser. Je suis conscient qu'il s'agit d'un bogue Ubuntu 14.04 LTS. Mais y a-t-il des correctifs pour cela?

4
Alexander Kim

Le rapport de bogue est ici . Egmont Koblinger a écrit un correctif (voir le commentaire n ° 22 du rapport de bogue). Je ne change pas de langue, je ne l'ai donc pas testée, mais d'autres utilisateurs ont indiqué que cela fonctionnait.

Téléchargez-le et reconstruisez xorg-server en procédant comme suit (comme indiqué dans le commentaire d'Egmont):

Sudo apt-get install build-essential fakeroot dpkg-dev
mkdir build
cd build
apt-get source xorg-server
Sudo apt-get build-dep xorg-server
cd xorg-server-1.15.1
cp ~/Downloads/xorg-server-xkb-numlock.patch debian/patches/ # replace Downloads appropriately
echo xorg-server-xkb-numlock.patch >> debian/patches/series
dpkg-buildpackage -rfakeroot -b
cd ..
Sudo dpkg -i xserver-common_1.15.1-0ubuntu2_all.deb xserver-xorg-core_1.15.1-0ubuntu2_AMD64.deb

Voir également le commentaire n ° 27 de ce rapport de dimitronic pour une autre méthode, bien qu'il s'agisse d'un script et non d'un correctif comme vous l'aviez demandé. Je l'ai copié ci-dessous:

1)mkdir ~/keyfix ; cd ~/keyfix

2)open a file show_layout.sh and copy and paste this: " setxkbmap -print | grep xkb_symbols | awk '{print $4}' | awk -F"+" '{print $2}' " (without the first and the last ")

3)open a file keyfix.sh and copy and paste this:
s=0
s1=0
while test "1" == "1"
do

s=`$HOME/keyfix/show_layout.sh`

sleep 0.001s

if test "$s" != "$s1"
then

numlockx off
numlockx on

#if test "$s" == "alt_layout"
#then
#xset led named "Scroll Lock"
#else
#xset -led named "Scroll Lock"
#fi

fi

s1=`$HOME/keyfix/show_layout.sh`

if test "$s" != "$s1"
then

numlockx off
numlockx on

#if test "$s" == "alt_layout"
#then
#xset led named "Scroll Lock"
#else
#xset -led named "Scroll Lock"
#fi

fi
sleep 0.01s

done
********************
if you want to turn on scroll lock when you use alternative layout, remove the #'s and change alt_layout to your alternative layout i.e. "gr" or "us"
**************************

3)open a file disown_easy.sh and copy and paste this:
#!/bin/bash
$1 &
P=`which $1`
disown `pidof ${P}`

4)open a file run-keyfix and copy and paste this:
$HOME/keyfix/disown_easy.sh $HOME/keyfix/keyfix.sh

5) open a terminal and type:
 chmod +x ~/keyfix/* ; Sudo cp ~/keyfix/run-keyfix /usr/bin/

6)make the script run-keyfix to run on startup! (go to startup applications and add it)

THIS IS NOT A SOLUTION! THIS IS A STUPID FIX!

*don't use these scripts to make weapons!
4
Aibara