24 votes

Positionnement des icônes du bureau à gauche plutôt qu'à droite

Un moyen de faire apparaître automatiquement des alias ou des icônes sur le côté gauche du bureau d'Apple. Par défaut, ils vont à droite.

11voto

M K Points 10691

Il n'existe aucun moyen de forcer les icônes à aller automatiquement vers la gauche (et à rester disposées selon le critère que vous choisissez).

Comme solution de contournement, vous pouvez modifier l'adresse de l'utilisateur. Afficher les options dans le Finder pour ne classer les éléments selon aucun critère et placer les icônes manuellement à gauche.

  • Cliquez sur un espace vide sur le bureau.
  • Appuyez sur Cmd + J ou utilisez la souris pour accéder à la fenêtre du Finder. Affichage > Afficher les options d'affichage menu.
  • Dans le Trier par : dans la boîte de dialogue, choisissez soit Aucun ou Snap to Grid .
  • Vous pourrez déposer des fichiers n'importe où sur votre bureau et ils y resteront.

Ver Les bases du Mac : Modifier votre Windows pour plus d'informations.

Passez également en revue les Les bases du Mac pour en savoir plus sur l'utilisation d'un Mac.

4voto

Benjamin Chausse Points 183

Ce n'est pas la meilleure solution mais elle peut fonctionner si rien d'autre ne fonctionne...

  1. Créez une action de dossier Automator associée au bureau.
  2. Ajouter l'article : "exécuter un applescript"
  3. Collez le code suivant dans la zone de texte applescript :

    -- https://gist.github.com/mrienstra/8330528
    -- Based on http://www.tuaw.com/2012/12/24/applescript-desktop-icon-race/
    -- Inspired by http://namesakecomic.com/comic/happy-new-year-from-namesake/#comment-1182035013
    
    -- Rearranges Desktop icons to flow from left to right, top to bottom.
    
    -- To have this run automatically every time files are added or removed from the Desktop, set this script to run as a Desktop "Folder Action". (See https://developer.apple.com/library/mac/documentation/applescript/conceptual/applescriptlangguide/reference/ASLR_folder_actions.html )
    
    -- This is currently a rough proof-of-concept. It has only been tested with OS X 10.8.5 (Mountain Lion).
    
    -- Current known limitations: Does not work with "Label position" set to "Right" (specifically, icons will overlap).
    
    -- Adjust these for different spacing
    property theSpacingFactor : 1.0
    property theGutterXFactor : 0.57
    property theGutterYFactor : 0.57
    
    on rearrangeDesktopIcons()
        tell application "Finder"
            tell icon view options of window of desktop
                set theArrangement to arrangement
                set theArrangementString to theArrangement as string
                if {"not arranged", "«constant ****narr»", "snap to grid", "«constant ****grda»"} does not contain theArrangementString then
                    display alert "\"Rearrange Desktop Icons\" AppleScript says:" message "Cannot rearrange Desktop items, please change Desktop \"Sort by\" to \"None\" or \"Snap to Grid\"." giving up after 10
                    return
                end if
                set theIconSize to icon size
                set theLabelSize to text size
            end tell
    
            set theDesktopBounds to bounds of window of desktop
            set theDesktopWidth to item 3 of theDesktopBounds
            set theDesktopHeight to item 4 of theDesktopBounds
    
            -- Retrieve a list of items on the desktop
            set theDesktopItems to every item of desktop
            set theContestantOffset to theIconSize / 2
    
            set theSpacing to (theIconSize + theLabelSize + theContestantOffset) * theSpacingFactor
            set theGuttersX to theSpacing * theGutterXFactor
            set theGuttersY to theSpacing * theGutterYFactor
            set theMaxColumns to ((theDesktopWidth - theGuttersX * 2) / theSpacing) as integer
            set theMaxRows to ((theDesktopHeight - theGuttersY * 2) / theSpacing) as integer
            set theMaxLocations to theMaxRows * theMaxColumns
    
            set y to 1
            repeat with a from 1 to length of theDesktopItems
                set x to a mod theMaxColumns
                if x is 0 then
                    set x to theMaxColumns
                end if
    
                if a is greater than theMaxLocations then
                    set desktop position of item a of theDesktopItems to {theGuttersX, theGuttersY}
                else
                    set desktop position of item a of theDesktopItems to {theGuttersX + (x - 1) * theSpacing, theGuttersY + (y - 1) * theSpacing}
                end if
    
                if a mod theMaxColumns is 0 then
                    set y to y + 1
                end if
            end repeat
        end tell
    end rearrangeDesktopIcons
    
    on adding folder items to alias after receiving listOfAlias
        rearrangeDesktopIcons()
    end adding folder items to
    
    on removing folder items from alias after losing listOfAliasOrText
        rearrangeDesktopIcons()
    end removing folder items from
    
    rearrangeDesktopIcons()

Ainsi, chaque fois qu'un fichier est ajouté à votre Bureau, tous les fichiers seront réorganisés par ordre alphabétique...

0voto

prmatta Points 1189

Organisez tous les dossiers dans l'ordre que vous souhaitez. Puis, dans le menu Affichage, cliquez sur "Nettoyer". Cela permettra de tout aligner joliment. Ensuite, vous pouvez simplement mettre en surbrillance tous les dossiers et les positionner exactement où vous le souhaitez. Les Macs n'organisent pas les dossiers sur la gauche, mais uniquement sur la droite, mais il suffit de quelques étapes simples pour que tout soit bien organisé sur la gauche.

-1voto

John Points 9

J'ai juste mis en surbrillance tous les dossiers de la partie droite, puis je les ai tous saisis et collés à gauche.

LesApples.com

LesApples est une communauté de Apple où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres utilisateurs d'appareils Apple, poser vos propres questions ou résoudre celles des autres.

Powered by:

X