23 lines
320 B
Bash
Executable file
23 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
|