Andrea Parodi
Andrea Parodi
This example creates some menu: https://github.com/parro-it/libui-napi/blob/master/example/core-api.js#L5
Hi, since my plugin `hyperterm-title` is now embedded in core, tabs title is now managed directly by your shell. There is a special escape sequence command that is meant to...
Checkout [pure prompt](https://github.com/sindresorhus/pure) for zsh. I'm sure there are similar ones for bash or fish too
I agree that a better default behaviour is useful... Show the Shell name should be simple to implement The cwd or current foreground process instead was not trivial, previous hyper...
@stereokai 😁 any idea on how we Can listen for cwd change or foreground process change without polling?
I found this issue there: https://github.com/cmderdev/cmder/issues/815. Seems they are using terminal escape codes too to set the title... but I'm not sure. /cc @samvasko @Stanzilla @MartiUK @Jackbennett
This is my linux terminal, with two tabs running `bash`:  It display current shell user and name of the shell. I had to comment lines on my `.bashrc` that...
> Can you check if echo -ne '\e]0;HelloCmder\a' is working for you in your Linux shells? Then we could narrow it down to a single, cross-OS method It work, that...
Try to run this on bash: ```bash PS1="\[\033]0;\w\007\]>" ``` That command set your prompt to an escape sequence that change the title to the cwd every time you run a...
> @parro-it doesn't seem to work in Bash on Windows, but anyway - it won't be supported in cmd and PowerShell - so what's the use? It is a Linux-only...