Preferenze di visualizzazione del cercatore a livello di sistema

19

So che i file .DS_Store vengono creati in ogni directory che inserisco con il finder in Mac OS X e che tiene traccia dei metadati della cartella (incluso il modo in cui viene visualizzata). So anche che questo comando:

sudo find /Users/[USERNAME]/ -name ".DS_Store" -depth -exec rm -f {} \;

... cancellerà in modo ricorsivo tutti i file .DS_Store insiti nella cartella / Users / [USERNAME] /.

Inoltre, so che quando si preme CMD + J all'interno di una finestra di ricerca, selezionando la configurazione desiderata (icone 40x40, spazio griglia medio-piccolo, ordinata per tipo, dimensione del testo 10px, mostra informazioni sull'elemento, mostra l'anteprima dell'icona, sfondo bianco) e selezionando "usa come valori predefiniti" sarà .. beh, impostalo come predefinito, e tenendo premuto OPT lo ripristinerà su quello predefinito.

Il fatto è che quando creo una nuova cartella, non prende quei parametri. E le cartelle che HAD .DS_Store ha cancellato i file mantengono quella configurazione precedente, non quella "predefinita".

Che cosa posso fare per impostare un look finder coerente e sistemico?

Sono su Mac OS X 10.6.6.

    
posta AeroCross 19.03.2011 - 20:04
fonte

3 risposte

12

Per impostare un look finder del sistema puoi utilizzare i passaggi in link (e le pagine dopo la pagina 2) per impostare una cartella in modo ricorsivo usando applescript, che imposterà le vecchie viste delle cartelle su tutto ciò che si desidera in base all'articolo.

Start by browsing to the parent folder whose viewing options you wish to set and propagate to all of its sub-folders.

Don't worry if you already set the parent folder's view options earlier. It's always a good idea to double-check a folder's settings before you propagate them to all of its sub-folders.

Use the steps outlined on page 3: 'Permanently Set Folder View Options.' Once the parent folder's Finder view is set, launch Automator, located in the /Applications folder.

When Automator opens, select the Workflow template from the list, and click the Choose button.

Automator's interface is broken into four primary panes. The Library pane holds all of the actions and variables that Automator knows how to use. The Workflow pane is where you build a workflow by connecting actions. The Description pane provides a short description of the selected action or variable. The log pane displays the results of a workflow when it is run.

To create our workflow, select the Actions button in the Library pane.

Select the Files & Folders item in the Library of available actions.

In the second column, grab the Get Specific Finder Items action and drag it to the workflow pane.

Click the Add button in the Get Specific Finder Items action you just placed in the workflow pane.

Browse to the folder whose view settings you wish to propagate to all of its sub-folders, then click the Add button.

Return to the Library pane and drag the Set Folder Views action to the Workflow pane. Drop the action just below the Get Specific Finder Items action already in the Workflow pane.

Use the options displayed in the Set Folder Views action to tweak how you want the specified folder to display. It should already show the current folder's configuration for views, but you can fine-tune some parameters here.

Place a check mark in the Apply Changes to Sub-folders box.

Once you have everything configured the way you want it, click the Run button in the top right corner.

The Finder View options will be copied to all sub-folders.

Close Automator.

Quando si tratta di cartelle appena create, trovo che ereditano le proprietà del genitore quando sono state create, e non riesco comunque a impostarlo diversamente, ma potresti anche averlo in base agli eventi delle cartelle con l'automator da eseguire la tua cartella visualizza gli script in qualsiasi modo desideri.

    
risposta data 13.04.2011 - 20:39
fonte
13

C'è un modo più semplice.

  1. Nel Terminale, vai alla tua directory $ HOME: cd ~

  2. Rimuovi tutti i file .DS_Store :

    find ~ -name ".DS_Store" -depth -exec rm -f {} \;
    
  3. Riavvia finder andando a: Forza Esci → Finder

  • Imposta le tue preferenze globali usando ⌘J e premi il pulsante Utilizza come predefinito .

  • Ora, ogni cartella aperta o creata avrà le nuove impostazioni.

  • risposta data 28.02.2014 - 17:47
    fonte
    0

    Quindi in pratica usa l'azione Imposta viste cartella in Automator:

    Nonc'èmododicambiareladimensioneolaposizionediWindows.

    Potrestiancheusareunoscriptcomequesto,maèaltrettantolentoquandoAutomatorquandoapplicaleproprietàdellafinestraèspuntato.

    tellapplication"Finder"
        folders of entire contents of (POSIX file "/Users/username/Folder/" as alias)
        repeat with f in result
            open contents of f
            tell Finder window 1
                set toolbar visible to false
                set sidebar width to 0
                set statusbar visible to false
                set current view to column view
                set bounds to {474, 250, 1318, 750}
                tell its column view options
                    set shows icon to false
                end tell
                close
            end tell
        end repeat
    end tell
    
        
    risposta data 07.01.2013 - 04:17
    fonte

    Leggi altre domande sui tag