오른쪽 대신 왼쪽에 바탕 화면 아이콘 배치


15

Apple 데스크톱의 왼쪽에 별칭이나 아이콘을 자동으로 표시하는 방법. 기본적으로 오른쪽으로 이동합니다.



이것은 이해할 수없는 macOS의 솔루션 중 하나입니다. Apple이 사용자에게 오른쪽에 아이콘이 표시되도록하는 이유는 무엇입니까? 왼쪽으로 끌 수 있지만 그게 요점이 아닙니다. 이름별로 정렬하면 모든 것이 오른쪽으로 돌아갑니다. DesktopFinder에서 디렉토리 를 열더라도 아이콘이 왼쪽에 맞춰집니다! 일관성이 없습니다. 시스템 언어를 아랍어 나 히브리어가 아닌 왼쪽에서 오른쪽으로 스크립트로 설정했습니다. 이것이 유명한 Apple 사용자 경험입니까?
vtvs

답변:


7

아이콘이 자동으로 왼쪽으로 이동하도록하는 방법은 없습니다 (선택한 기준에 따라 정렬 상태를 유지).

이 문제를 해결 하기 위해 Finder 의 보기 옵션 을 변경하여 기준에 따라 항목을 정렬하지 않고 아이콘을 왼쪽에 수동으로 배치 할 수 있습니다 .

  • 바탕 화면에서 빈 공간을 클릭하십시오.
  • Cmd+를 누르 J거나 마우스를 사용하여 Finder의 보기>보기 옵션 표시 메뉴로 이동하십시오.
  • 대화 상자 의 정렬 기준 : 드롭 다운에서 없음 또는 격자에 맞추기를 선택하십시오 .
  • 데스크탑 어디에서나 파일을 드롭 할 수 있으며 파일은 그대로 유지됩니다.

자세한 정보는 Mac 기본 사항 : 윈도우 수정 을 참조하십시오.

Mac 기본 사용법 페이지를 통해 Mac 사용에 관한 추가 정보를 얻으십시오.


1
Q는 Finder View 메뉴에서 자동 정리 기준 및 정렬 기준 선택에 대해 묻고 있습니다. 왜 오른쪽에만 배치합니까?
Zo219

감사. 자동 부분을 놓치고 답을 수정했습니다.
MK

2

이것은 최선의 해결책은 아니지만 다른 방법이 없다면 효과가 있습니다 ...

  1. 데스크탑과 연관된 Automator 폴더 조치를 작성하십시오.
  2. 항목 추가 : "run applescript"
  3. 애플 스크립트 텍스트 상자에 다음 코드를 붙여 넣습니다.

    -- 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()
    

따라서 파일이 데스크탑에 추가 될 때마다 모든 파일이 알파벳순으로 재정렬됩니다.


0

모든 폴더를 원하는 순서대로 구성하십시오. 그런 다음보기에서 '정리'를 누르십시오. 이렇게하면 모든 것이 잘 정렬됩니다. 그런 다음 모든 폴더를 강조 표시하고 원하는 위치에 정확하게 배치 할 수 있습니다. Mac은 왼쪽에 폴더를 구성하지 않고 오른쪽에만 폴더를 구성하지만 몇 가지 쉬운 단계를 통해 왼쪽에 모든 것을 깔끔하게 정리할 수 있습니다.


이것은 '창'대신 '보기'를 읽어야합니다. 죄송합니다.
MikeZ

:-) 텍스트를 직접 편집 할 수 있습니다 대답 아래의 편집 링크가
nohillside

0

방금 오른쪽에서 모든 폴더를 강조 표시 한 다음 모든 폴더를 잡고 왼쪽에 붙여 넣었습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.