VS Code [UBUNTU] : Enable SynthWave '84 theme glow effect
![VS Code [UBUNTU] : Enable SynthWave '84 theme glow effect](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1722619995317%2F75a514a0-5637-45f5-ab7d-ede613f5bac8.png&w=3840&q=75)
Student developer exploring Next.js, React, React Native & Tailwindcss. Solid in HTML & CSS. Passionate about building web/mobile apps. Always eager to learn🎯!
Search for a command to run...
![VS Code [UBUNTU] : Enable SynthWave '84 theme glow effect](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1722619995317%2F75a514a0-5637-45f5-ab7d-ede613f5bac8.png&w=3840&q=75)
Student developer exploring Next.js, React, React Native & Tailwindcss. Solid in HTML & CSS. Passionate about building web/mobile apps. Always eager to learn🎯!
No comments yet. Be the first to comment.
Introduction I developed a CLI tool called ccstatus that displays actual session usage directly in the Claude Code status line. This enhancement allows users to view their session metrics without needing to manually type "/status", providing a more s...

In today’s article, we will be thoroughly exploring the steps to resolve the common issue where npm install hangs or gets stuck. This problem can be quite frustrating for developers, as it interrupts the workflow and delays project progress. There ar...

How to Fix the Too Many Re-Renders Error in Next.js
![Resolving [Next.js] Error: Too Many Re-Renders](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1731352564929%2Fd337c016-9fda-477f-8d9e-6327de2935b5.png&w=3840&q=75)
As the title suggests, today we will delve into the process of generating an APK file from your React Native code. This guide is designed for those who have created their projects using Expo, and we will use Expo EAS Build(Expo Application Service) t...
![[Expo] Convert Your React Native Code to an Android APK : A Detailed Process](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1729877794570%2Fb308207e-b464-434d-a46c-7621fb28fecc.jpeg&w=3840&q=75)
In this article, I will provide a comprehensive guide on how to export your YouTube subscriptions from one account and then import them into another account of your choice. This process involves several steps to ensure that all your favorite channels...


So, as in the extension's details section 👆, it tells us to enable the glow effect by choosing "Enable Neon Dreams" in the command palette and then restart vs code. But when I did, VS Code showed me the following error :

For the Windows users it's an easy task. They just need to right-click and select Run as administrator. But as UBUNTU users, we don't have that kind of option. THEN HOW AM I ABLE TO DO IT 😕? No need to worry I'll show you how to solve it!
You need to change the owner of VS Code installation files folder into you current user, most likely you can find that folder in /usr/share (if not, run whereis code in a terminal and you'll find the folder location). Then apply this command :
sudo chown -R ${whoami} /usr/share/code
NOTE : replace "${whoami}" with your system user's name. You can get it by running the command whoami in the terminal. (Ex :- sudo chown -R john /usr/share/code)
After that, you can enable Neon Dreams in VS Code as the instructions say and then run this command to set the owner back to root :
sudo chown -R root /usr/share/code
Thank you for taking the time to read through this guide. I hope you found it helpful and that it resolves the issue you were facing with enabling the Neon Dreams effect in VS Code Synthwave '84 theme on Ubuntu. By following these steps, you should now be able to run VS Code with the necessary permissions and enjoy the enhanced glowing effects without any errors. If you encounter any further issues or have additional questions, feel free to reach out for more assistance. Your feedback is always appreciated, and I'm here to help you with any other technical challenges you might face.
I look forward to sharing more insights with you in future articles. Happy Coding 😊!!!