2023-01-28 20:49:10 +00:00
|
|
|
self:
|
|
|
|
with self; ''
|
2021-05-30 19:10:28 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
current_layout=$(${sway}/bin/swaymsg -t get_inputs | ${jq}/bin/jq -r '.[] | select(.type == "keyboard") | .xkb_active_layout_index' | head -1)
|
|
|
|
total_layouts=$(${sway}/bin/swaymsg -t get_inputs | ${jq}/bin/jq -r '.[] | select(.type == "keyboard") | .xkb_layout_names | length' | head -1)
|
|
|
|
|
|
|
|
next_layout=$(expr $current_layout + 1);
|
|
|
|
|
|
|
|
if [ $next_layout -ge $total_layouts ]; then
|
|
|
|
next_layout=0;
|
|
|
|
fi
|
|
|
|
|
2022-04-30 19:43:56 +00:00
|
|
|
${libnotify}/bin/notify-send "$next_layout"
|
2021-05-30 19:10:28 +00:00
|
|
|
${sway}/bin/swaymsg input '*' xkb_switch_layout "$next_layout"
|
|
|
|
''
|