दाईं ओर के बजाय बाईं ओर स्थित डेस्कटॉप आइकन


15

ऐप्पल डेस्कटॉप के बाईं ओर दिखाने के लिए स्वचालित रूप से उपनाम या चिह्न बनाने का कोई भी तरीका। डिफ़ॉल्ट रूप से वे दाईं ओर जाते हैं।



यह macOS में से एक है जो मुझे समझ में नहीं आता है। Apple उपयोगकर्ताओं को दाईं ओर आइकन रखने के लिए क्यों मजबूर करता है? आप उन्हें बाईं ओर खींच सकते हैं, लेकिन वह बात नहीं है। जब आप उन्हें नाम से छाँटते हैं तो सब कुछ सही हो जाता है। यहां तक ​​कि जब आप Desktopखोजक में निर्देशिका खोलते हैं, तो आइकन बाईं ओर संरेखित होते हैं! वह असंगत है। मेरे पास मेरी सिस्टम भाषा है जो अरबी या हिब्रू में बाएं से दाएं स्क्रिप्ट पर सेट है ... क्या यह प्रसिद्ध Apple उपयोगकर्ता अनुभव है?
vtvs

जवाबों:


7

आइकन को स्वचालित रूप से बाईं ओर जाने के लिए बाध्य करने का कोई तरीका नहीं है (और आपके द्वारा चुने गए मानदंड द्वारा व्यवस्थित रहें)।

वर्कअराउंड के रूप में, आप बाईं ओर मैन्युअल रूप से किसी भी मानदंड और आइटम आइकन की व्यवस्था नहीं करने के लिए फाइंडर में व्यू विकल्प बदल सकते हैं ।

  • डेस्कटॉप पर खाली जगह पर क्लिक करें।
  • प्रेस Cmd+ Jया माउस का उपयोग खोजक के लिए जाने के लिए देखें> शो दृश्य विकल्प मेनू।
  • में द्वारा क्रमबद्ध करें: संवाद में लटकती, या तो चुनें कोई भी या स्नैप ग्रिड को
  • आप अपने डेस्कटॉप पर कहीं भी फाइलें छोड़ सकते हैं और वे वहीं रहेंगे।

मैक मूल बातें देखें : अधिक जानकारी के लिए अपनी खिड़कियों को संशोधित करें

मैक का उपयोग करने के बारे में अधिक जानने के लिए मैक बेसिक्स पृष्ठों पर भी जाएं ।


1
क्यू ऑटोमैटिक क्लीन अप बाय और सॉर्ट बाई चॉइस के बारे में पूछ रहा है, मुझे विश्वास है, फाइंडर व्यू मेन्यू में - और यह एक तरह का कूल होगा। केवल अधिकार की व्यवस्था क्यों?
Zo219

धन्यवाद। मैंने स्वचालित भाग को याद किया और उत्तर को सही किया।
एमके

2

यह सबसे अच्छा समाधान नहीं है, लेकिन यह काम कर सकता है अगर कुछ और नहीं ...

  1. डेस्कटॉप के साथ जुड़े एक स्वचालित फ़ोल्डर क्रिया बनाएँ।
  2. आइटम जोड़ें: "एप्सस्क्रिप्ट चलाएँ"
  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 बाईं ओर फ़ोल्डर व्यवस्थित नहीं करते हैं, केवल दाईं ओर, लेकिन कुछ आसान चरणों के साथ आप बाईं ओर बड़े करीने से व्यवस्थित हो सकते हैं।


यह 'विंडो' सॉरी के बजाय 'व्यू' पढ़ना चाहिए, यह मेरा बुरा था।
23:25 पर माइकज

वहाँ जवाब नीचे एक संपादित करें लिंक सीधे पाठ संपादित करने की अनुमति देता है :-) है
nohillside

0

मैंने दाहिने हाथ की तरफ से सभी फ़ोल्डरों को उजागर किया, फिर उन सभी को पकड़ लिया और बाईं ओर चिपकाया।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.