dotfiles/.local/bin/keyboard_toggle

13 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