Come faccio ad aprire Dolphin in una determinata cartella dal terminale?


11

Vorrei aggiungere un'icona di avvio alla barra delle applicazioni che viene eseguita dolphinma che inizialmente inizia in una cartella che vorrei specificare

il Manuale Dolphin non spiega questo.

Risposte:



3

Pagine di aiuto

Le applicazioni di KDE hanno l'aiuto - con 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

Avvia con l'applicazione predefinita

KDE ha le "Appications predefinite" nelle impostazioni di sistema di KDE.

Il 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

Apertura della directory con il file manager predefinito:

kfmclient exec /path/to/the/directory/

Ciò si integrerebbe bene con un alias o una funzione di profilo bash
PandasRocks

2

Se desideri aprire delfino dal tuo percorso corrente nel tuo terminale, basta usare,

dolphin . &
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.