Results 1 to 5 of 5

Thread: Nautilus question

  1. #1
    Join Date
    Feb 2016
    Beans
    1

    Nautilus question

    Sorry if this is the wrong place where to post the question.

    Can I open a nautilus window with custom content? e.g. I have a list of files with different paths

    Code:
    /place1/file1.pdf
    /place2/file2.txt
    /place3/file3.avi
    And I would like to open a new nautilus windows with those three files as content!

    Thank you

    Pietro

  2. #2
    Join Date
    Feb 2008
    Location
    Land of fire and drought
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: Nautilus question

    Welcome. I can't see how you'd do that unless you put all those files in the same folder. But then they wouldn't be in different places.

    What you're wanting to do is not really the way things work with Nautilus (or any file browser I know of). You could, though, open a folder in Nautilus, hit control+t to open a new tab and go to the location of your second file, open a third tab and go to the third file ... etc.

    About the best I can offer. Curious to see what others throw in ...

  3. #3
    Join Date
    Jun 2007
    Beans
    17,337

    Re: Nautilus question

    Taking "content" literally, no. Nautilus is a file manager not a pdf or text reader or media player. The 'canvas' that it uses to display icons in is set in the source & marginally affected by theme.

  4. #4
    Join Date
    Oct 2006
    Beans
    58,286

    Re: Nautilus question

    Not sure if you could script something that opened one window with 3 tabs., each tab opening the folder containing the relevant file(s). Too much work for dubious results for me though

    What about creating symlinks to the files ?

  5. #5
    Join Date
    Feb 2008
    Location
    Land of fire and drought
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: Nautilus question

    Quote Originally Posted by howefield View Post
    What about creating symlinks to the files ?
    Nicely. Yea, that could work ...

    Code:
    ln -s 'location to link to' 'name of symlink'
    Create a folder, say called /home/folder. Then, replacing your files, do:

    Code:
    ln -s /path/to/file1 /home/folder/file1
    Replace '/path/to/file1' with you real details and path to the file (and same for second path to symlink folder). The command above won't move file1 to folder but it will put a link to file1 in folder which, when you click it, opens file1. Repeat for any other files you want in that folder.
    Last edited by Bucky Ball; February 27th, 2016 at 02:47 AM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •