[x] I have searched the issues of this repo and believe that this is not a duplicate
OS version and name: WINDOWS 10
My Hyper is connected with Bash on Windows and it really works well than expected. But now the only problem is that the username + path in the terminal nearly takes a line and it kind of feels akward for me.
I want my Hyper Terminal to look something like this :

I searched everywhere, got into the core app but still i am unable to find a solution for this. Is there any kind of packages or hacks I could use to produce the result I wanted?
There's ways to theme your Bash terminal. It's really nothing to do with Hyper itself.
@CodeTheory No matter what, I've tested multiple themes but still, there is no change to the theme itself. My terminal looks the same even after restart and reload.
Themes tested with :
This is how it looks with official material theme :

Bash themes and Hyper themes are very different things. Hyper is the terminal emulator, and has no control over the prompt string (beyond what font it is rendered in). Bash is the shell program, and controls what your prompt string contains. In bash, your prompt string is determined by the PS1 environment variable. Bash-it is a series of bash functions that includes themes that change your prompt string. You should read up on it.
@MartyGentillon Thanks a lot for making me understand
Most helpful comment
Bash themes and Hyper themes are very different things. Hyper is the terminal emulator, and has no control over the prompt string (beyond what font it is rendered in). Bash is the shell program, and controls what your prompt string contains. In bash, your prompt string is determined by the PS1 environment variable. Bash-it is a series of bash functions that includes themes that change your prompt string. You should read up on it.