diff options
Diffstat (limited to 'PCBSD/pc-sysinstall/backend-query/xkeyboard-variants.sh')
-rwxr-xr-x | PCBSD/pc-sysinstall/backend-query/xkeyboard-variants.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/PCBSD/pc-sysinstall/backend-query/xkeyboard-variants.sh b/PCBSD/pc-sysinstall/backend-query/xkeyboard-variants.sh deleted file mode 100755 index 3bf18d7..0000000 --- a/PCBSD/pc-sysinstall/backend-query/xkeyboard-variants.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -FOUND="0" - -# Lets parse the xorg.list file, and see what varients are supported -while read line -do - - if [ "$FOUND" = "1" -a ! -z "$line" ] - then - echo $line | grep '! ' >/dev/null 2>/dev/null - if [ "$?" = "0" ] - then - exit 0 - else - echo "$line" - fi - fi - - if [ "${FOUND}" = "0" ] - then - echo $line | grep '! variant' >/dev/null 2>/dev/null - if [ "$?" = "0" ] - then - FOUND="1" - fi - fi - -done < /usr/local/share/X11/xkb/rules/xorg.lst - -exit 0 |