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

    • What I miss mostly is that I cannot resize the taskbar. I want a smaller taskbar.
    • BRING BACK the taskbar folder popup quick-launch feature. ...or whatever it was called. :-)
    • The sound never left. My Windows 10 installation still has it enabled, I found the checkbox in an earlier build and turned it on and my PC chimes every time it cold boots. That's how I know Windows Update didn't shut down after updating despite me telling it to. That being said... seeing Apple Liquid Glass has me thinking, if Windows 11 brought back the 7 Aero Glass running on top of the new kernel, minus the AI crap, I might actually be willing to move to it.
    • These days the differences are small, so if you're a petty nerd over dumb things, you'll be forever stuck behind and won't ever enjoy the latest and current niceties. Yup, it's a real life lesson too.
    • Microsoft 365 Roadmap Weekly: New features for the new Outlook, Copilot updates and more by David Uzondu This week, Microsoft added a slew of new entries to the public Microsoft 365 Roadmap, including plans for Teams, the new Outlook, and, of course, Copilot and Copilot Chat. Starting with Outlook, three practical updates are headed for the new Outlook for Windows client. First up, you'll finally be able to add attachments to emails while you are offline, a basic function that has been sorely missed. The remaining two features are slated for August. One will let you create a rule that specifically triggers a desktop alert. The other adds a folder deletion warning. If you try to delete a folder on which an email rule depends, Outlook will stop you and prompt you to fix the rule first. Like Google with Gemini, Microsoft continues to push Copilot deeper into its applications, with several updates planned for mid-2025. Later this month, Copilot will be able to give you a quick summary of recent changes and comments on a file right from the backstage view in Word, Excel, and PowerPoint, before you even open the document. Also, Copilot Chat will get the ability to limit its responses to selected content sources, like specific SharePoint sites or files, which should make its answers more focused. Next month, PowerPoint users will get two more Copilot tricks. You will be able to rewrite selected text using a custom natural language prompt and add entirely new topics to an existing presentation, with Copilot generating slides that match the existing look and feel. Edge is not left out, as its integrated Copilot Chat will soon be able to access content across multiple open tabs, not just the active one, with that update scheduled for August. Finally, for organizations that heavily use Teams Rooms Pro on Windows, an August update will allow for simultaneous town hall and webinar views. This will keep the presenter's backstage controls, like green room and backroom chat, hidden from the main audience display in the room.
  • 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
      610
    2. 2
      ATLien_0
      285
    3. 3
      +FloatingFatMan
      179
    4. 4
      Michael Scrip
      151
    5. 5
      Steven P.
      112
  • Tell a friend

    Love Neowin? Tell a friend!