diff options
| -rwxr-xr-x | lang.sh | 14 | ||||
| -rwxr-xr-x | signout.sh (renamed from .signout.sh) | 0 |
2 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/bin/sh + +ENGINES=$(ibus engine) +case "$ENGINES" in + *pl*) + echo "PL" + ;; + *anthy*) + echo "JA" + ;; + *) + echo "??" + ;; +esac |
