Habilita la visualización de los discos duros en la barra lateral del buscador desde la terminal

1

Administro MacBooks (os versión 10.13) la mayor parte del tiempo de forma remota y tanto como sea posible solo desde el terminal.

Sé cómo mostrar los discos duros en la barra lateral del Finder mediante la interfaz gráfica > Buscador > Preferencias ...

¿Es posible habilitar esto desde el terminal? (sfltool ya no está disponible desde 10.13+)

    
pregunta Kevin Lemaire 04.07.2018 - 10:33

1 respuesta

0

Aquí está mi solución basada en el enlace compartido por @sansSpoon:

Puede usar esta biblioteca de python: FinderSidebarEditor

Simplemente colóquelo en su ruta de Python y luego en Python, puede editar su barra lateral del Finder fácilmente:

#!/usr/bin/python

from FinderSidebarEditor import FinderSidebar                  # Import the module

sidebar = FinderSidebar()                                      # Create a Finder sidebar instance to act on.

sidebar.remove("All My Files")                                 # Remove 'All My Files' favorite from sidebar
sidebar.remove("iCloud")                                       # Remove 'iCloud' favorite from sidebar
sidebar.add("/Library")                                        # Add '/Library' favorite to sidebar
sidebar.add("/SomeShare", uri="smb://shares")                  # Mount 'smb://shares/SomeShare' to '/Volumes/SomeShare' and add as favorite to sidebar
sidebar.add("/SomeOtherShare", uri="afp://username:pw@server") # Mount pw protected 'afp://server/SomeOtherShare' to '/Volumes/SomeOtherShare' and add as favorite to sidebar
sidebar.move("Library", "Applications")                        # Move 'Library' favorite to slot just below 'Applications'
    
respondido por el Kevin Lemaire 04.07.2018 - 12:52

Lea otras preguntas en las etiquetas