Support Our Site

To ensure we can continue delivering content and maintaining a free platform for all users, we kindly request that you disable your adblocker. Your contribution greatly supports our site's growth and development.

How To Customize Windows Command Prompt Interface

2 min read

Command prompt is command line interpreter application available on Windows Machine. It's used to execute commands and batch files. It is also addresed as Terminal or Windows Command Processor.

If you are an advanced user or a Programmer who owns a windows machine, then you must have to do a lot of interactions with the command prompt which is quite a powerful tool.

The dull interface of terminal might bother sometimes, but gladly customizing the command prompt is quite easy in this article we will show you, how to customize it.

Let's get started.

How to customize Windows Command Prompt

First, type cmd in the search box, click on the first result to open the terminal. This should open your command prompt.

Now click on the Command prompt icon on the top right followed by a click on properties to open the customization dialog as shown below.

How to customize windows command prompt

The very first dialog you got the options tab, there is not much do here, I usually keep the cursor size at medium you can do the same and move to the next tab which is font.

Here you can customize the font size and choose from the number of fonts which you like then click on OK to apply the changes, here are my settings,

How to customize windows 10 command prompt

Next is the Layout tab, I usually leave it as it is, you can surely try out some layouts here.

Now move to the colors tab, here you can customize the entire feel of your terminal, go through all the color combinations. You can either select from the pre-defined colors or use the Red, Green, and Blue color values. As you change settings, you will see a preview in the bottom. Play around until you get the  desired configuration and click OK to apply the settings. Here are my configurations -

customize windows 10 command prompt

 

This is how my command prompt looks like now.

how to customize windows command prompt

Play around the configurations more you might get a better result than me, hope this article helped you.

 


TOOLS

Latest Articles

Latest from djangocentral

How to Use Subquery() in Django With Practical Examples

In the realm of web development, Django stands as a powerful and versatile framework for building robust applications. One of the key aspects of developing efficient and optimized web applications is handling database queries effectively. In this article…
Read more →

4 min read

DRF Serializer: Handling OrderedDict and Converting It to a Dictionary or JSON

In Django Rest Framework (DRF) tests, when you access serializer.data, you might encounter an OrderedDict instead of a regular dictionary. This behavior is intentional and reflects the design of DRF's serialization process.Understanding the Problem The u…
Read more →

3 min read

Django Rest Framework CheetSheet: Mastering API Development

Django Rest Framework (DRF) is a powerful toolkit that makes building robust and scalable web APIs with Django a breeze. Whether you're a seasoned Django developer or a newcomer, having a comprehensive cheat sheet at your disposal can be a game-changer. …
Read more →

5 min read

How to Perform NOT Queries in Django ORM

In Django, performing NOT queries allows you to exclude certain records from the query results based on specific conditions. The NOT operator, represented by the tilde (~) when used in conjunction with the Django ORM's Q object, helps you construct compl…
Read more →

3 min read