Como abro o Dolphin em uma determinada pasta do terminal?

5

Gostaria de adicionar um ícone inicial à minha barra de tarefas que executa dolphin , mas inicialmente inicia em uma pasta que gostaria de especificar

o Manual do Dolphin não explica isso.

    
por rubo77 26.04.2013 / 08:54

3 respostas

7

Tente isso no terminal: dolphin /usr/home/ (escolha seu próprio caminho). Para mais informações, leia a man page (também disponível online: link ).

    
por don.joey 26.04.2013 / 11:11
1

Páginas de ajuda

As aplicações do KDE têm a ajuda - com o Dolphin:

:~$ dolphin --help
Usage: dolphin [Qt-options] [KDE-options] [options] [Url] 

File Manager

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --select                  The files and directories passed as arguments will be selected.
  --split                   Dolphin will get started with a split view.

Arguments:
  Url                       Document to open

Inicie com o aplicativo padrão

O KDE tem as "Appications Padrão" nas configurações do sistema do KDE.

O kfmclient é:

:~$ kfmclient --help
Usage: kfmclient [Qt-options] [KDE-options] [KDE-tempfile-options] [options] command [URL(s)] 

KDE tool for opening URLs from the command line

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-kde-tempfile       Show KDE-tempfile specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --noninteractive          Non interactive use: no message boxes
  --commands                Show available commands

Arguments:
  command                   Command (see --commands)
  URL(s)                    Arguments for command

Abrindo o diretório com o gerenciador de arquivos padrão:

kfmclient exec /path/to/the/directory/
    
por user26687 26.04.2013 / 10:38
0

Se você gostaria de abrir o golfinho a partir do seu caminho atual no seu terminal, use

dolphin . &
    
por Keerthi S 18.03.2018 / 18:59