config/.local/bin/kbswitcher
2023-08-13 11:43:06 +09:30

27 lines
486 B
Bash
Executable File

#!/usr/bin/env bash
fn="$HOME/.cache/kbswitcher-status"
layout=""
# first run the file won't exist
if [ ! -f "$fn" ]; then
layout="dvorak"
echo "dvorak" > "$fn"
else
case $(cat "$fn") in
us)
echo "dvorak" > "$fn"
layout="dvorak"
;;
dvorak)
echo "us" > "$fn"
layout="us"
;;
esac
fi
notify-send -u normal -r 161616 "kbswitcher" "Keyboard layout set to $layout."
switchkb $layout