Configuration file for dwm-bar on macbook air
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
447 B

  1. #!/bin/sh
  2. # A dwm_bar function that displays the current keyboard layout
  3. # Joe Standring <git@joestandring.com>
  4. # GNU GPLv3
  5. # Dependencies: xorg-setxkbmap
  6. dwm_keyboard () {
  7. printf "%s" "$SEP1"
  8. if [ "$IDENTIFIER" = "unicode" ]; then
  9. printf "⌨ %s" "$(setxkbmap -query | awk '/layout/{print $2}')"
  10. else
  11. printf "KEY %s" "$(setxkbmap -query | awk '/layout/{print $2}')"
  12. fi
  13. printf "%s\n" "$SEP2"
  14. }
  15. dwm_keyboard