blob: b64e92387c0e12068b52498cbd76c9c2ec17aa89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
cachefile="$HOME/.cache/layout"
# Handle manual override first
if [ -n "$1" ]; then
echo "$1" >"$cachefile"
else
# Ensure the cache file exists, or initialize it
[ -f "$cachefile" ] || echo "us" >"$cachefile"
layout=$(cat "$cachefile")
case "$layout" in
ca)
echo us >"$cachefile"
;;
us)
echo ca >"$cachefile"
;;
*)
echo us >"$cachefile"
;;
esac
fi
# Apply keyboard layout
riverctl keyboard-layout -model pc104 "$(cat "$cachefile")"
# Restart the correct block if waybar is running
waybar_pid=$(pidof waybar)
if [ -n "$waybar_pid" ]; then
kill -38 "$waybar_pid"
fi
|