Does anyone know what this grey app icon is?

Does anyone know what this grey app icon is? I have factory reseted and completely reinstalled macos but it still shows up when I boot up my computer. every time I boot up my Mac, it comes up on the dock and immediately dissapears again.


here is a video: https://packaged-media.redd.it/zwhtmscirvfb1/pb/m2-res_480p.mp4?m=DASHPlaylist.mpd&v=1&e=1691078400&s=135c1bdf34271e2906339e3edb7a226582d643fb#t=0

MacBook Air 13″, macOS 13.5

Posted on Aug 3, 2023 5:51 AM

Reply
10 replies

Aug 3, 2023 8:32 AM in response to Mac_o_clock

When passing your pointer over that anonymous Dock icon, does it show a name above it? Did you run any script to add an item to your Dock?


Drag and drop this AppleScript into Apple's Script Editor, click the hammer icon, and then click run. It will pop a dialog with a list of all application names in the Dock in the order of their appearance in the Dock from left to right. It excludes Finder.


# return a list of application names in the Dock in left to right order
# reference: https://stackoverflow.com/questions/14245301/can-applescript-list-all-the-applications-placed-in-the-dock
set plistpath to (path to preferences folder as text) & "com.apple.dock.plist"

tell application "System Events"
	set plistContents to contents of property list file plistpath
	set pListItems to value of plistContents
end tell
set persistentAppsList to |persistent-apps| of pListItems

set dockAppsList to {}
repeat with thisRecord in persistentAppsList
	set end of dockAppsList to |file-label| of |tile-data| of thisRecord
end repeat
set {TID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
display dialog (items of dockAppsList) as text with title "Apps in the Dock"
set AppleScript's text item delimiters to TID
return dockAppsList


This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Does anyone know what this grey app icon is?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.