Como fazer meu aplicativo aceitar pastas do Unity Launcher?

7

Ao arrastar um arquivo, todas as entradas no iniciador que podem abrir esse arquivo permanecem acesas enquanto os outros desaparecem. Tanto quanto eu sei, isso é baseado nos tipos de MIME especificados no arquivo .desktop de cada aplicativo.

Gostaria que meu aplicativo pudesse aceitar pastas como argumentos por meio do launcher de unidade . Eu adicionei

MimeType=inode/directory;

para o meu arquivo .desktop, mas sem sucesso.

Alguma idéia?

Editar:

Este é o meu arquivo .desktop completo:

[Desktop Entry]
Version=4
Name=Wallch
Comment=Change desktop wallpapers automatically
Exec=/usr/bin/wallch %U
Icon=wallch
Terminal=false
Type=Application
Categories=Utility;Application;
MimeType=inode/directory;

Actions=Start;Change_Wallpaper;

[Desktop Action Start]
Name=Start
Exec=/usr/bin/wallch --start
TargetEnvironment=Unity

[Desktop Action Change_Wallpaper]
Name=Change Wallpaper
Exec=/usr/bin/wallch --change
TargetEnvironmet=Unity
    
por hytromo 02.09.2013 / 02:00

1 resposta

4

Após algumas pesquisas, descobri que, se você quiser que um aplicativo do ativador esteja ativo e fique mais leve quando arrastar uma pasta, será necessário nomear seu arquivo .desktop da seguinte maneira:

app_name-nautilus.desktop

ou:

app_name-nautilus-folder-handler.desktop

Então, no seu caso, será:

wallch-nautilus.desktop

Não tenho certeza se essa restrição é um comportamento normal (como deveria ser) ou se é um bug. Se você considera que isso é um bug, você pode denunciá-lo como um bug .

Dito isto, eu criei o seguinte script que fará este trabalho automaticamente para você (eu chamei de wallch_on_launcher ):

#!/bin/bash

#wallch_on_launcher - script to create a .desktop file for wallch application and set its icon on the launcher
#the icon from the launcher will stay lightened when a folder is dragged

#Licensed under the standard MIT license:
#Copyright 2013 Radu Rădeanu (https://askubuntu.com/users/147044/).
#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE

desktop_file="wallch-nautilus.desktop"
desktop_file_path="$HOME/.local/share/applications/$desktop_file"

launcher_icons=$(gsettings get com.canonical.Unity.Launcher favorites)
new_launcher_icons=$(echo $launcher_icons | sed "s/]/, 'application:\/\/$desktop_file']/g")

touch $desktop_file_path

cat << EOF > $desktop_file_path 
[Desktop Entry]
Version=4
Name=Wallch
Comment=Change desktop wallpapers automatically
Exec=/usr/bin/wallch %U
Icon=wallch
Terminal=false
Type=Application
Categories=Utility;Application;
MimeType=inode/directory;

Actions=Start;Change_Wallpaper;

[Desktop Action Start]
Name=Start
Exec=/usr/bin/wallch --start
TargetEnvironment=Unity

[Desktop Action Change_Wallpaper]
Name=Change Wallpaper
Exec=/usr/bin/wallch --change
TargetEnvironmet=Unity
EOF

gsettings set com.canonical.Unity.Launcher favorites "$new_launcher_icons"

Não se esqueça de tornar o script executável:

chmod +x wallch_on_launcher

O resultado pode ser visto na tela abaixo:

Observe que a versão atual do Wallch (3.01-0ubuntu2) não sabe como manipular uma pasta que é fornecida como argumento:

$ wallch ~/Pictures
Invalid option: '/home/radu/Pictures'
Type wallch -h or --help for all available options

Então, por causa disso, nada acontece quando você arrasta e solta uma pasta no ícone do Wallch no Unity Launcher.

    
por Radu Rădeanu 06.09.2013 / 13:45