Recommended Posts

I don't know about the clock, but the colors can be manipulated through the Properties dialog of PowerShell

image.jpeg

This site talks about the "new" Terminal tab which includes experimental features, https://devblogs.microsoft.com/commandline/new-experimental-console-features/ so it could have been something that was there and then removed, or some other trick is needed to get the Clock prefix.

  On 26/05/2023 at 08:28, Steven P. said:

I don't know about the clock, but the colors can be manipulated through the Properties dialog of PowerShell

image.jpeg

This site talks about the "new" Terminal tab which includes experimental features, https://devblogs.microsoft.com/commandline/new-experimental-console-features/ so it could have been something that was there and then removed, or some other trick is needed to get the Clock prefix.

Expand  

Thanks. I think you are talking about CMD/PowerShell, not the (Windows) Terminal. The Terminal doesn't have such right-click menu, it has a "Settings", and by clicking on it, it goes to the Terminal setting page that has nothing about the feature.

ss.png.e46705d3d2f7ba07bfc4d57d1eba0a5b.png

  On 26/05/2023 at 11:46, binaryzero said:

+1 Oh My Posh\Powerlines. 

Been using it for years...

Expand  

Thanks. I'm not a power user of the command line. I use it for some CLI apps (like FFMPEG). I love this theme. Could you help me to make my Terminal prompt like the original SS above (from NeoWin)? I can add the clock by this command: prompt $T$H$H$H$S$P$. I know nothing more!

sss.png.11188c5a1413f2a5e83f2a305a600e3d.png

 

  On 26/05/2023 at 12:46, DonC said:

On PowerShell you can define a "prompt" function to do that kind of thing but the OP is using the command shell.

EDIT: Just realised it was a Neowin screenshot and not OP's actual shell. Oh My Posh is good advice.

Expand  

It's (Windows) Terminal. The SS is about Terminal version 1.17 (NeoWin blog post).

https://www.neowin.net/news/windows-terminal-preview-117-now-out-with-mica-support-and-process-restart/

  On 26/05/2023 at 14:57, neo2023 said:

I don't use 3rd-party app. The Neowin post uses Windows Terminal (like me). I think it has been modified by some "Prompt" command in "Environment Variables".

Expand  

all the ones you see are from oh-my-post, there is even articles on MS's site on how to set it up

https://learn.microsoft.com/en-us/windows/terminal/tutorials/custom-prompt-setup

I now notice that it is CMD this is being used and not Powershell.

There is a way to modify the CMD prompt;

prompt | Microsoft Learn

Try this in cmd;

prompt $c$t$f$g$p$g

I didn't get it exactly the same as in your screen shot. Still trying to get the last piece.

Ok. Got it.

prompt $c$t$f$g$p$g$_%username%@%computername%$g

 

Edited by Spannercrank
  On 26/05/2023 at 16:37, neo2023 said:

@Spannercrank Many thanks. Yours is closer to the Neowin SS. I think I have to ask the post author, but I don't know if he is here (in this forum)!

s.png.424d76fc7c18253225f6318cfca9d1ce.png

Expand  

Try this one;

prompt $c$t$f$g$p$g$_%username%@%computername%$g

  On 26/05/2023 at 14:57, neo2023 said:

I don't use 3rd-party app. The Neowin post uses Windows Terminal (like me). I think it has been modified by some "Prompt" command in "Environment Variables".

Expand  

I’m using Windows Terminal as well. 
 

https://starship.rs/

 

  On 26/05/2023 at 17:00, neo2023 said:

@Spannercrank Cool 🤩. Did you find out anything about the highlight (white on the clock and aqua in the username)?

ss.png.a56952b57a2e90f8d0d17b32211836da.png

Expand  

Working on it.

  On 26/05/2023 at 17:30, Spannercrank said:

Working on it.

Expand  

I don't think I got one of the colors exactly right but try this;

prompt $e[30m$e[47m$c$t$f$e[37m$e[46m$g$p$e[36m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g

 

  On 26/05/2023 at 17:47, Spannercrank said:

I don't think I got one of the colors exactly right but try this;

prompt $e[30m$e[47m$c$t$f$e[37m$e[46m$g$p$e[36m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g

Expand  

Oh God!!! You are a genius 😍👏🏻... Many many thanks. You would be God if you find out the aqua colour and the brackets code. Thanks... 👍🏻

s.png.adf980e3f2b18355b72de1b5e954cd4d.png

  On 26/05/2023 at 17:47, Spannercrank said:

 

Expand  

 

  On 26/05/2023 at 17:54, neo2023 said:

Oh God!!! You are a genius 😍👏🏻... Many many thanks. You would be God if you find out the aqua colour and the brackets code. Thanks... 👍🏻

s.png.adf980e3f2b18355b72de1b5e954cd4d.png

 

Expand  

You can get the aqua colour with a 24 bit colour code:

prompt $e[30m$e[47m$c$t$f$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g

The 24 bit version of the background colour change is the following bit. You can adjust the RGB values (Red 0, Green 128, Blue 128 in the examples above) from 0 to 255 to fine tune it. Substitute "48" with "38" to change the foreground colour instead of the background colour.

$e[48;2;0;128;128m

 

  • Like 1
  • Thanks 1
  On 26/05/2023 at 18:28, DonC said:

You can get the aqua colour with a 24 bit colour code:

prompt $e[30m$e[47m$c$t$f$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g

The 24 bit version of the background colour change is the following bit. You can adjust the RGB values (Red 0, Green 128, Blue 128 in the examples above) from 0 to 255 to fine tune it. Substitute "48" with "38" to change the foreground colour instead of the background colour.

$e[48;2;0;128;128m

 

Expand  

I was wondering why I could not get the color right. Thanks.

Here is the final version with the square brackets;

prompt $e[30m$e[47m[$t]$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g
 

 

  On 26/05/2023 at 18:28, DonC said:

You can get the aqua colour with a 24 bit colour code:

prompt $e[30m$e[47m$c$t$f$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g

The 24 bit version of the background colour change is the following bit. You can adjust the RGB values (Red 0, Green 128, Blue 128 in the examples above) from 0 to 255 to fine tune it. Substitute "48" with "38" to change the foreground colour instead of the background colour.

$e[48;2;0;128;128m

 

Expand  

Co0o0o0o0o0o0l 🥳... Many thanks for the colour code.

  On 26/05/2023 at 18:34, Spannercrank said:

I was wondering why I could not get the color right. Thanks.

Here is the final version with the square brackets;

prompt $e[30m$e[47m[$t]$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$_%username%$e[37m@$e[32m%computername%$e[37m$g
 

 

Expand  

Many many many thanks 🥳👍🏻👌🏻. I removed "%username%" and "%computername%" but it didn't remove the second line. Do you know how we can remove it?

ssss.png.b6845f318a3d65f6c1c12f487083bf16.png

  On 26/05/2023 at 18:45, neo2023 said:

Co0o0o0o0o0o0l 🥳... Many thanks for the colour code.

Many many many thanks 🥳👍🏻👌🏻. I removed "%username%" and "%computername%" but it didn't remove the second line. Do you know how we can remove it?

ssss.png.b6845f318a3d65f6c1c12f487083bf16.png

Expand  

From the end of the prompt line remove up to and including the $_.

So you should have;

prompt $e[30m$e[47m[$t]$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m

 

  On 26/05/2023 at 19:07, neo2023 said:

@Spannercrank Thanks 👍🏻. My last question. I see the command text and background colour I type is changing to a new colour (Aqua text on Black Background). Should it be there, or can I change it to the default (Terminal's default colours)?

image.png.f4d7f416f6a4e3faaa588f50c3eb9238.png

Expand  

For that you need to put the colour reset code on the end:

prompt $e[30m$e[47m[$t]$e[37m$e[48;2;0;128;128m$g$p$e[38;2;0;128;128m$e[40m$g$e[96m$e[0m

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • To the extent that we are talking about beta software, this article falls more in the realm of nerds sharing thoughts and tricks. I love seeing articles like this, people should very openly share what they like and dislike about the new look. We all know Apple tends to be stubborn, but maybe they still make minor tweaks to improve the readability.
    • I know beauty is in the eye of the beholder, but I disagree. It looks good, but looking good should be a lower priority to being functional, and that is where I think Apple missed the mark.
    • Uninstall is also just a link to the "Apps" list, I really hate it. How is it any better than Windows 95 where you had the Uninstall option right there in the Start menu's program folder, which when clicked on actually started the Uninstall! The only saving grace is that it actually is possible to directly uninstall by right clicking on Microsoft Store apps.
    • Truth, I use Windows 11 myself, but that is really just because I have always run the latest GA software, same reason why I ran Windows 8 and 8.1. I didn't really want to go from Windows 7 to 8, just like I didn't really want to go from 10 to 11...but in both cases, I didn't super hate it either, and as a techie, I like knowing my way around the latest options. I'm a little disappointed MS is dropping support for Windows 10 prior to Windows 12 coming out. Not just by a little bit, by all accounts, we are at least 1-2 years from even seeing Windows 12 beta, so it isn't just being missed by a few months. I like the idea of having a stable mostly unchanging OS option for those who don't want to be a guinea pig for all the newest hairbrained ideas. Windows 10 got a lot of hate in the early days for how rapidly it was changing, and rightfully so. For the last several years MS got it right by mostly leaving Windows 10 alone and making all those changes on Windows 11. It would have been nice if 11 could at least reach that longer-term stable state before Win10 went away.
  • Recent Achievements

    • Apprentice
      Wireless wookie went up a rank
      Apprentice
    • Week One Done
      bukro earned a badge
      Week One Done
    • One Year In
      Wulle earned a badge
      One Year In
    • One Month Later
      Wulle earned a badge
      One Month Later
    • One Month Later
      Simmo3D earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      609
    2. 2
      ATLien_0
      283
    3. 3
      +FloatingFatMan
      179
    4. 4
      Michael Scrip
      151
    5. 5
      Steven P.
      111
  • Tell a friend

    Love Neowin? Tell a friend!