13 lines
165 B
Text
13 lines
165 B
Text
|
#!/bin/bash
|
||
|
|
||
|
if [[ $(setxkbmap -query|grep oss) ]]
|
||
|
then
|
||
|
setxkbmap fr bepo
|
||
|
notify-send 'Clavier Bépo'
|
||
|
else
|
||
|
setxkbmap fr oss
|
||
|
notify-send 'Clavier OSS'
|
||
|
fi
|
||
|
exit 0
|
||
|
|