Eu escrevi um script chamado notify-kbd-layout.sh
e criei um link simbólico para /usr/bin
: sudo ln -s ./notify-kbd-layout.sh /usr/bin/notify-kbd-layout
Código-fonte obrigatório:
if [ "$(xset -q | grep -A 0 'LED' | cut -c59-67)" = '00000000' ]
then
notify-send 'Current Keyboard Layout:' 'US (English)'
fi
if [ "$(xset -q | grep -A 0 'LED' | cut -c59-67)" = '00001000' ]
then
notify-send 'Current Keyboard Layout:' 'CMS (French)'
fi
Depois, entrei em Configurações > Teclado & Atalhos > Personalizar e adicionei um atalho para ALT + Deslocamento para executar notify-kbd-layout
.