- -スクリプトを使用してOS Xランチパッドからアプリのアイコンを非表示にする方法

スクリプトを使用してOS Xランチパッドからアプリアイコンを非表示にする方法

OS XのLaunchpadは、アプリを起動するだけでなく、それらを整理するためにも。 Launchpadで作成するフォルダーは、アプリケーションフォルダーで作成される実際のフォルダーではないため、頻繁に使用するアプリをインストール済みアプリのリストとは別にグループ化することができます。 Launchpadのアプリアイコンの唯一の問題は、それらをフォルダに移動できるだけで、完全に非表示にできないことです。これは、じゅうたんの下のほこりを一掃するようなものです。アプリのアイコンはまだ残っていますが、フォルダ内に隠されて見えなくなります。良いことは、シンプルな小さなスクリプトでLaunchpadからアプリのアイコンを削除でき、システムからアプリが削除されることを心配しないことです。

Macランチパッド

Launchpadからアイコンを削除するには、最初にAppleScript Editorを開き、次のスクリプトをそこに貼り付ける必要があります。

on open the_items
my Lighten_LaunchPad(the_items)
end open
on Lighten_LaunchPad(the_items)
repeat with the_item in the_items
set the_item to the_item as alias
--try
tell application "Finder"
set nameString to name of the_item
set sost to (my get_the_name(nameString)) as string
end tell
display dialog "Are you sure you want to remove "" & sost & "" from the Launchpad? The app itself won"t be deleted."         try
set my_command to "sqlite3 ~/Library/Application\ Support/Dock/" & "*.db "DELETE from apps WHERE title=" & (quoted form of sost) & ";";osascript -e "tell application "Dock" to quit""
do shell script my_command
on error the error_message number the error_number
activate
if the error_number is not -128 then
if the error_number is 1 then
set the error_text to "Error: " & the error_number & ". " & "You probably have too many old versions of the LaunchPad database file." & return & return & " To fix that, move some old ones out of ~/Library/Application Support/Dock. You can safely move any file with a name that ends with ".db" or ".db.backup" except for the most recently modified one." & return & return & "Do you want me to open that folder for you?"                     display dialog the error_text buttons {"Yes, please open it.", "Cancel"} default button 1
if button returned of the result is "Yes, please open it." then
do shell script "open" & space & quoted form of POSIX path of (path to application support folder from user domain) & "Dock"
end if
error number -128
else
set the error_text to "Error: " & the error_number & ". " & the error_message                     display dialog the error_text buttons {"Cancel"} default button 1
end if
else
error number -128
end if
end try
end repeat
display dialog "All done!" buttons {"OK"} default button 1
end Lighten_LaunchPad
on get_the_name(nameString)
tell AppleScript
set olD to text item delimiters
set text item delimiters to "."
set reqItem to -1
if last item of nameString = "." then set reqItem to -2
set theName to text item reqItem of nameString
--try
set theNameNoExt to ((text items 1 through (reqItem - 1) of nameString) as string)
set text item delimiters to olD
return {theNameNoExt}
end tell
end get_the_name
on run
set the_items to ((choose file) as list)
Lighten_LaunchPad(the_items) end run

次に、好きな場所にスクリプトをアプリとして保存します。 このアプリを起動すると、Finderウィンドウが開きます。 Launchpadから削除するアプリを選択し、そのアイコンを本当に削除するかどうかを尋ねられたら確認します。これでDockが再起動し、Launchpadからアプリが削除されます。 Launchpadから削除したいすべてのアイコンに対してそれを繰り返すだけで完了です。

アプリのアイコンを復元したい場合ラウンチパッド、このスクリプト(またはその他のツール)に依存する必要はありません。アプリケーションフォルダを開き、アプリのアイコンをLaunchpadにドラッグアンドドロップします。

次のようなアイコンの削除と追加に注意してくださいこれにより、Launchpad内のフォルダー構造はそのままになりません。削除する前に以前にフォルダーに分類されていたアプリアイコンを元に戻すと、元の位置に復元されず、選択したフォルダーに手動で再度ドロップする必要があります。

この目的のために別のアプリをインストールする必要がある場合は、Launchpad-controlを試してください。

[経由 Mac OS Xヒント]

コメント