cant find config file in Fedora17

Asked by Faizal Khan

what i want to do is to change the height of the window of nautilus-terminal.But i cant find the configuration file(.nautilus-terminal)

specification:
nautilus-3.4
gnome-3.4
kernel-3.6.10

can someone help me plz to find out the configuration file????

Question information

Language:
English Edit question
Status:
Solved
For:
Nautilus Terminal Edit question
Assignee:
No assignee Edit question
Solved by:
Fabien LOISON
Solved:
Last query:
Last reply:
Revision history for this message
Fabien LOISON (flozz) said :
#1

Hello,

Since Nautilus Terminal 1.0, you have to create the configuration file manually.

Here is an example of config file (~/.nautilus-terminal):

    [general]
    #The terminal height (lines)
    def_term_height=5
    #The terminal default visibility in new windows? (1: Visible, 0: Hidden)
    def_visible=1
    #The terminal position (1: Top, 0: Bottom)
    #NOTE: it's not recommended to put the terminal on the bottom
    term_on_top=1

    [terminal]
    #The shell to use (Nautilus Terminal use the user's defined shell by default)
    shell=/bin/bash

regards,

Revision history for this message
Faizal Khan (manmatha1989) said :
#3

may be i sound like a fool..well i am a newbie..

i have created a file ".nautilus-terminal.conf" in my home directory..

it contains

    def_term_height=15
    def_visible=1
    term_on_top=1

    shell=/bin/bashains

still its not working...

Revision history for this message
Best Fabien LOISON (flozz) said :
#4

Hello,

you have to put *exactly* the following lines:

[general]
def_term_height=15
def_visible=1
term_on_top=1
[terminal]
shell=/bin/bash

Then, you have to restart Nautilus:

nautilus -q # Stops Nautilus
nautilus # Start Nautilus again

Regards, :)

Revision history for this message
Faizal Khan (manmatha1989) said :
#5

Thanks Fabien LOISON, that solved my question.