Alternativa a additemtodock di Henri Shustak

2

Sto usando uno script da riga di comando per aggiungere elementi al dock tramite script

link

Ma sembra che abbia molti bug e forse persino "uccida" il mio file di configurazione Dock. Ci sono buone alternative là fuori per aggiungere * .app correttamente al dock?

    
posta Dukeatcoding 18.09.2012 - 09:11
fonte

1 risposta

2

Apri Applicazioni / Utility / AppleScript Editor e incolla questo:

my add_item_to_dock(choose file of type {"APPL"} with prompt "Choose an application to add to the Dock:")
on add_item_to_dock(item_path)
try
        get item_path as alias -- you need a POSIX path so this coerces the path in case it's an HFS path, alias, file ref, etc.
        set item_path to POSIX path of item_path
    end try
    try
        tell application "Dock" to quit
    end try
    do shell script "defaults write com.apple.dock persistent-apps -array-add '<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>" & item_path & "</string><key>_CFURLStringType</key><integer>0</integer></dict></dict></dict>'"
    try
        tell application "Dock" to activate
    end try
end add_item_to_dock

Salvalo come Script o Applicazione .

    
risposta data 18.09.2012 - 09:38
fonte

Leggi altre domande sui tag