17 lines
394 B
Bash
Executable File
17 lines
394 B
Bash
Executable File
#!/bin/sh
|
|
|
|
stdlayout=us # standard layout takes "default" color
|
|
stdname=en-us # arbitrary, descriptive only
|
|
|
|
magenta=#d33682
|
|
green=#859900
|
|
|
|
layout="$(xkb-switch)"
|
|
|
|
case $layout in
|
|
"${stdlayout}") color=$green; icon=" "; name=$stdname ;; # f11c fa-keyboard-o
|
|
*) color=$magenta; icon=""; name="dvorak" ;; # f11c fa-keyboard-o
|
|
esac
|
|
|
|
echo "<fc=$color><fn=1>$icon </fn> ${name}</fc>"
|