Hi,
Whenever I start my console gnome-terminal in Ubuntu, it starts in the home directory. How can I make its start in a different directory say ~/myfolder?
I tried to write cd ~/myfolder in ~/.profile but nothing happens.
|
|
|
|
|
|
|
if you start gnome-terminal like "gnome-terminal --working-directory=myfolder" it will start with the working directory at ~/myfolder. so you could add a new entry to your menu to use that command instead of the other one. |
||||
|
|
|
From GNOME Terminal - Getting Started:
|
||||
|
|
|
Add the following to your ~/.bashrc cd ~/myfolder |
||||||
|
|
|
I did this way - with script: open 3 tabs in same window size 170x40, each "tab" start in different directory. gnome-terminal --geometry=170x40 --working-directory=myfolder1 \ --tab --working-directory=myfolder2 \ --tab --working-directory=myfolder3 |
||
|
|
