Tmux – Tmux true color is not working properly

Perhaps you overlooked this in setting up (one can see that you overlooked Tc): commit 427b8204268af5548d09b830e101c59daa095df9 Author: nicm <nicm> Date: Fri Jan 29 11:13:56 2016 +0000 Support for RGB colour, using the extended cell mechanism to avoid wasting unnecessary space. The ‘Tc’ flag must be set in the external TERM entry (using terminal-overrides or a … Read more

How to change the terminal to the current directory in visual studio code ? (hotkey) [duplicate]

With VSCode 1.39 (Sept. 2019), no more plugin needed. You now can “Open new terminals with custom working directories” There is a new command that allows the creation of terminals with a custom current working directory (cwd): { “key”: “cmd+shift+c”, “command”: “workbench.action.terminal.newWithCwd”, “args”: { “cwd”: “${fileDirname}” } } You can create your own keyboard shortcuts … Read more

How to run ngrok in background?

as described previously you can run ngrok in background with ./ngrok http 8080 > /dev/null & next you can use curl and for example jq a command-line JSON processor. export WEBHOOK_URL=”$(curl http://localhost:4040/api/tunnels | jq “.tunnels[0].public_url”)” your URL will be accessible from $WEBHOOK_URL env variable and you can use it anywhere.