dotfiles/.i3blocks/bepo
2020-09-15 02:50:48 +02:00

24 lines
320 B
Bash
Executable file

#!/bin/bash
runtime="${XDG_RUNTIME_DIR}/i3blocks"
[[ ! -d "$runtime" ]] && mkdir -p "$runtime"
if [[ -n "$button" ]]
then
if [[ -f "$runtime/oss" ]]
then
setxkbmap fr bepo
rm "$runtime/oss"
else
setxkbmap fr oss
touch "$runtime/oss"
fi
fi
if [[ -f "$runtime/oss" ]]
then
echo "oss "
else
echo "bepo"
fi