How to change default terminal to iTerm2 in Nitrous Desktop - nitrousio

Regardless of system default terminal in OS X, when clicking on SSH for VM, the standard Terminal is opened. Is it possible to change that to iTerm2? If so, can it open a new tab in last window, rather than opening new window?

Nitrous Desktop for Mac does not have an option to open iTerm2 instead of the standard Terminal at this time, so you will need to open iTerm2 through your applications folder.
You may be interested in setting up a keyboard shortcut with iTerm2 in order to quick connect to your Nitrous box. Take a look at the best practices guide in order to create a profile within iTerm2 for your Nitrous box.

Related

How to open Live server in specific Chrome Profile

I have tried changing settings but I could not find setting that could open the live server in the another profile of chrome. If anyone have some idea how to do it please let me know. BTW I have no problem using the default chrome profile or incognito setting provided in the drop drop list, I am just curious that is that possible if we can open live server in another chrome profile than the default one.
I'm not sure what live server you have in mind, but you can probably use the command line for your system. For example, if you're using Windows and the Live Server extension for vsc, under the "Advance Custom Browser Cmd Line" option you can use "C:\Program Files (x86)\Google\Chrome.exe --profile-directory=Profile 1".

safari con't connect to localhost Xampp in Mac

I downloaded Xampp in my Mac for first time, the server is working but when I want to go to my application show that safari can not connect to server.
does any one know where is my problem ?
I assume that you have the latest version of XAMPP.
You can reach your application by clicking on the button "Go to Application" or writing your IP address showed in XAMPP followed by "/dashboard/" or your browser (e.g 192.168.64.2/dashboard like the image shows)
general tab xampp
If you have already tried this, the problem might be related to the network configuration in XAMPP.
Create a new rule that forward the LocalPort 80 to the RemotePort 80, and check the "Require Local" checkbox.
After that, enable the rule and test it using "localhost/dashboard/" in your browser.
network tab xampp

is it possible to keep a packaged app running after `chrome.runtime.reload()` without additional windows?

I have a packaged app that calls chrome.runtime.reload(). On a desktop OS (Windows, OSX) this call will cause the application to close, but not restart unless there is an additional Chrome page open.
I assume this is because if it is the only Chrome app running, it closes the Chrome process entirely and there is nothing to restart it.
Adding the background permission looks like it should work, according to the documentation but it does not seem to actually start Chrome when the user logs in (and keep it running) as the documentation states.
A user can override this globally with a setting.
In Chrome's settings with "Show advanced settings":
System > Continue running background apps when Google Chrome is closed
Perhaps it is disabled on your development system.

Open Google Incognito using AHK without a non-Incognito window

If I open Incognito without opening first a non-Incognito I can't search in Incognito...
F::run, C:\Program Files\Google\Chrome\Application\chrome.exe --incognito
(I use "F" just for faster in testing.)
To be able to search in incognito, I have to open first a non-incognito window.
Is it possible to open Google Incognito using AHK without opening first a non-incognito window?
if you use a layer beetween for e.g. VNC connection you could use imageSearch. You could see a working example here on youtube: https://youtu.be/sPdgCjLFc54
BTW VNC server and VNC client at the same machine with same IP.
helps that?

Is it possible to create a custom Chrome installer with specific extentions that will be installed automatically?

I'm looking to be able to provide a Chrome installer that as they go through the wizard it installs Google Chrome as per normal, however it will also automatically install specific extentions from the App Store that will be there when they first open the browser.
Is there a tool available that would allow me to do this easily? I've done a number of searches on the topic but I have been successful.
You can configure a list of extensions to be installed on first run of every new profile by using https://developer.chrome.com/extensions/external_extensions
So you'd just need to write a program that first lays this configuration down, and then runs the regular chrome installer.