exclude uncategorized posts from blog

function custom_category_widget($args) {
    $exclude = "1"; // Category IDs to be excluded
    $args["exclude"] = $exclude;
    return $args;
}
add_filter("widget_categories_args","custom_category_widget");