mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
- Format all shell scripts using [shfmt] (https://github.com/mvdan/sh). Options used: * `-bn`: binary ops like && and | may start a line * `-sr`: redirect operators will be followed by a space * `-ci`: indent switch cases * `-i 4`: indent 4 spaces * `-s`: simplify the code * `-p`: parse for posix compliance - Add Github action to lint changes to scripts and enforce formatting going forward Signed-off-by: Vladislav Doster <mvdoster@gmail.com>
19 lines
685 B
Bash
Executable File
19 lines
685 B
Bash
Executable File
#!/bin/sh
|
|
# works on any init system
|
|
# requirements: dmenu, xorg-setxkbmap
|
|
kb="$(setxkbmap -query | grep -oP 'layout:\s*\K\w+')" || exit 1
|
|
|
|
case $BLOCK_BUTTON in
|
|
1)
|
|
kb_choice="$(awk '/! layout/{flag=1; next} /! variant/{flag=0} flag {print $2, "- " $1}' /usr/share/X11/xkb/rules/base.lst | dmenu -l 15)"
|
|
kb="$(echo "$kb_choice" | awk '{print $3}')"
|
|
setxkbmap "$kb"
|
|
pkill -RTMIN+30 "${STATUSBAR:-dwmblocks}"
|
|
;;
|
|
3) notify-send "⌨ Keyboard/language module" "$(printf "%s" "\- Current layout: $(setxkbmap -query | grep -oP 'layout:\s*\K\w+')")
|
|
- Left click to change keyboard." ;;
|
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
|
esac
|
|
|
|
echo "$kb"
|