12 lines
171 B
Bash
Executable file
12 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $(setxkbmap -query|grep oss) ]]
|
|
then
|
|
setxkbmap fr bepo_afnor
|
|
notify-send 'Clavier Bépo'
|
|
else
|
|
setxkbmap fr oss
|
|
notify-send 'Clavier OSS'
|
|
fi
|
|
exit 0
|
|
|