
___X_CMD_OS_NAME_FP="$___X_CMD_ROOT_DATA/os/name"

# Speedup for theme module ...

___x_cmd___osname_(){
    x_=""

    if [ -n "$___X_CMD_OS_NAME_" ]; then
        x_="$___X_CMD_OS_NAME_"
        return
    fi

    if [ -f "$___X_CMD_OS_NAME_FP" ]; then
        read -r x_<"$___X_CMD_OS_NAME_FP"
    fi

    if [ -z "$x_" ]; then
        ___x_cmd os name_ || return $?
    fi

    ___X_CMD_OS_NAME_="$x_"
}
