Remova o sufixo “- Dolphin” da barra de título do Dolphin

1

No Kubuntu, se eu tiver uma janela do Dolphin aberta na pasta Home, a barra de título mostrará "Home - Dolphin". Posso mudar isso para apenas ler "Home"?

    
por The111 24.11.2013 / 19:17

1 resposta

4

Opções de golfinhos

:~$ 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

As opções do Qt têm:

  

- title define o título da aplicação (legenda)

Com o editor de menu do KDE, você pode definir o comando de início do Dolphin - link

---- EDITAR ----

O KDE 4.10 e posterior suportam a manipulação / remoção de título com scripts.

Solicitação de recurso: link . Bug / desejo: link

Testado com o KDE 4.11:

Faça o backup dos arquivos antes de editá-los;)

Editando o /usr/share/kde4/apps/kwin/stripTitle.js e adicionando o Dolphin à lista.

Ativando a manipulação do título executando o comando:

kwriteconfig --file kwinrc --group Windows --key CondensedTitle true

Ele adicionará uma linha ao kwinrc

Mais do kwriteconfig:

:~$ kwriteconfig --help
Usage: kwriteconfig [Qt-options] [KDE-options] [options] value 

Write KConfig entries - for use in shell scripts

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:
  --file <file>             Use <file> instead of global config
  --group <group>           Group to look in. Use repeatedly for nested groups. [KDE]
  --key <key>               Key to look for
  --type <type>             Type of variable. Use "bool" for a boolean, otherwise it is treated as a string

Arguments:
  value                     The value to write. Mandatory, on a shell use '' for empty

Reinicialização - aqui o título do Dolphin mostra apenas as informações do diretório.

    
por user26687 24.11.2013 / 20:59