How to define the desktop folder?

Hi,
I entered the following lines into the Terminal application:
sudo mv desktop desktop.bak
ln -s /Users/username/Dropbox/./Desktop
this command defined my Dropbox folder as the OS X desktop. plus, my Home folder now contains a folder called desktop.bak.
how can I undo this?
is it possible to define a folder inside the Home folder or inside the Dropbox folder as the OS X desktop?
thanks in advance for your suggestions.
best, Ian

@Niel
thanks a lot, the commands you suggested created a folder called Desktop.old inside my Home folder that now seems serve as the OS X Desktop. the dropbox folder no longer serves as the Desktop.
I'd have some further questions:
is it safe to delete the desktop.bak folder from the Home folder?
is it safe to rename the Desktop.old folder to simply Desktop?
is it possible to define a folder inside the dropbox folder as the OS X Desktop?
again, thank you Niel for your very helpful answer.

Similar Messages

  • How to delete the Desktop Folder in the User folder

    I don't use my desktop as a folder
    and I changed this folder to .Desktop to have it hidden
    but there is another folder Desktop non-hidden + my .Desktop folder always ready when I restart...
    How should I keep it hidden or out of my system ?
    Message was edited by: c8455

    Click here and use the instructions to hide it.
    (46869)

  • How to define the size of private folder in Easy DMS?

    Hi,
    I have to ristrict the user to keep  the data in private folder after the maximum limit
    please help me how to define the private folder size in easy DMS.
    after the limit user is not able to keep data in private folder.

    Hi,
    This can be done in SAP Customization / SPRO
    Pl. check :
    Cross-Application Components>Document Management>Control Data>Define Document types
    Here the size limit can be defined.
    Also check : http://scn.sap.com/community/plm/document-management/blog/2014/06/20/how-to-create-dir-and-document-type-in-dms
    Hope this helps
    Regards,
    Remi

  • How to define the margins of a leaf in numbers 3.2

    how to define the margins of a leaf in numbers 3.2
    leaves appear without margin and not when moving from one sheet to another

    Hi Ariel,
    Numbers 3 does not show margins in normal (edit) view. Some help with layout:
    Try Alignment Guides and Rulers as suggested here:
    Print View workarounds
    Use a layout guide:
    Layout Guide for Numbers
    If you previously had Numbers 2.3 (Numbers '09) it now lives in a folder called iWork '09 inside your Applications folder. It works just as well as it used to, and has a proper Print View.
    Regards,
    Ian.

  • How JFileChooser finds the Desktop and can browse CIFS(SMB) in windows.

    Hello.
    I'm currently using serveral methods from FileSystemView used by JFileChooser to detect if a File is a system root, a floppy, or to find the "My Documents" folder under windows.
    JFileChooser however is also able to provide a link to the desktop. How do I get that location from Java?
    Further more. JFileChooser is able to browse and use resources located on the network using CIFS(SMB). I've searched through JFileChoosers source. But I can't figure out how it does this.
    I'm currently writing a Folder synchronization app. As you can see in the screenshot ( http://users.telenet.be/greenhouse/Screenshot-7.png ) I'm trying to integrate the location browser (Look based on the GTK file browser) more into windows. I want my users to be able to browse CIFS just like in the JFileChooser. How do I do this?
    The reason I'm writing my own browser is because the GTK one provided in Java is more then lacking. And I can provide browsing for remote resources more easily (like SFTP and SCP)
    In short:
    *JFileChooser however is also able to provide a link to the desktop. How do I get that location from Java?
    *JFileChooser browses and uses CIFS in windows. How do I do this (without a 3th party library) the same way as JFileChooser does it?
    Message was edited by:
    finalbeta

    JFileChooser fr = new javax.swing.JFileChooser();
            FileSystemView fw=fr.getFileSystemView();
            defaultfolder = fw.getDefaultDirectory().getPath();
           String desktopfolder;
            if(System.getProperty("os.name").startsWith("Windows")){
                for(File tmp:fw.getRoots()){
                    dekstopfolder = tmp.getPath();
            }That piece of code gives the path to the desktop folder in Windows. In linux it returns root. (getRoots();) How horrible.
    I hope I'm going about this the wrong way. Because this would be an ugly Java API.

  • How do I change Desktop folder properties?

    I recently purchased a macbook pro. I used migration assistant to transfer all files, from my g4, via firewire. Now, when I attempt to download from the internet, I get this error message: "Downloading/users/myname/Desktop/filename could not be saved, because you cannot change the contents of that folder. Change the folder properties and try again, or try saving in a different location". How do I change desktop folder properties?
    mac book pro Mac OS X (10.4.7)

    Control-click or right-click anywhere on your desktop picture, and select Get Info from the contextual menu. Then expand the Ownership & Permissions section. You need to set the drop-down menus like this:
    You can: Read and Write
    Owner: <your username>
    Access: Read & Write
    Group: Staff
    Access: No Access
    Others: No Access
    If that doesn't work, log in as an administrator, open Terminal, and enter these commands (assuming your username is "bigalive"; change appropriately:
    sudo chown bigalive:staff /Users/bigalive/Desktop
    sudo chmod 700 /Users/bigalive/Desktop
    That should fix it.

  • How to get the enclosing folder of an Application?

    Ok. re-visiting my Applescript to compare installed apps versus a list of predefined apps... here is my test code so far:
    set appsPath to (path to applications folder)
    tell application "Finder"
      set appList to name of every application file of entire contents of folder appsPath
    end tell
    set theApps to {"iMovie.app", "Microsoft Excel", "Microsoft Excel.app", "Adobe Acrobat 7.0 Professional.app", "Adobe After Effects CS4.app", "ColorEyes Display Pro.app", "Corel Painter X.app", "DiskTracker 2.3.2", "EPSON Scan.app", "Flash 8.app", "Product Ingest.app", "Product Tag.app", "Art Ingest.app", "TextWrangler.app", "Toast Titanium.app", "Suitcase Fusion 2.app", "Suitcase Fusion 3.app", "Fetch.app"}
    repeat with anApp in theApps
      set vers to version of (application anApp)
      -- get parent path of anApp!!!!
      if (parentFolder is equal to "Applications" or parentFolder is equal to "Utilities") then
      set parentFolder to ""
      end if
      display alert anApp & ": Version: " & vers & " " & parentFolder
    end repeat
    The only thing I'm stuck on is how to get the parent folder of anApp. Basically we use several versions of software here that are not easily identifiable by the version attribute. However their enclosing folder has all the versioning info I need (e.g.: MS Excel 04's vers would be 110113, but the enclosing folder is "Microsoft Office 2004", and some departments get Office 2008, Office 2011, etc., so I need a human-friendly way to get the right versions)
    I don't know if the "if" statement to check whether the parent is Applications or Utilities is correct as I haven't gotten that far in testing. I'm only interested in getting the parent of apps that have parent folder that is a sub-folder of Applications or Utilities.
    Basically what I am trying to do here is write a text file containing all departmental apps, homefolder sizes, relevant partition sizes, etc. and spit it out at the tech responsible for migrating a user to a new mac (display alert is just convenient for testing purposes). In the past we've had too many "missed" items in QC like wrong apps installed, or wrong versions, or data not copied over properly, etc. So this way they can run this on the old system beforehand and the new system after, line everything up and check off if it matches. This is just a snippet...
    TIA!
    Andrew

    Hi,
    Andrew Caldwell wrote:
    Is there a way to invoke these without the script opening each one?
    You must use the bundle identifier instead of the name
    Here a example :
    set theApps to {"com.microsoft.excel", "com.adobe.Acrobat.Pro", "com.barebones.textwrangler", "com.roxio.Toast", "com.fetchsoftworks.Fetch"}
    repeat with anApp in theApps
           tell application "Finder" to tell (application file id anApp)
                  set vers to version
                  set parentFolder to name of its container
           end tell
           if parentFolder is in {"Applications", "Utilities"} then set parentFolder to ""
           display alert anApp & ": Version: " & vers & " " & parentFolder
    end repeat

  • How to define the date format for this date string

    2006-11-13 00:00:00.0
    How to define the date format in control file for sqlldr. "yyyy-mm-dd hh24:mi:ss" or "yyyy-mm-dd hh24:mi:ss.FF1" does not work
    thanks,

    SQL> desc t
    Name                                      Null?    Type
    TS                                                 TIMESTAMP(6)
    SQL> !cat t.ctl
    load data
    into table t
    truncate
    (ts timestamp "YYYY-MM-DD HH24:MI:SS.FF1")
    SQL> !cat t.dat
    2006-11-13 00:00:00.0
    SQL> !sqlldr userid=scott/tiger control=t.ctl data=t.dat log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Sep 7 11:19:28 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 1
    SQL> select * from t;
    TS
    13-NOV-06 12.00.00.000000 AMBest regards
    Maxim

  • How to get the system32 folder path in java?

    how to get the system32 folder path in windows using java code?

    Zstar Electronic Co.Ltd, Wholesaler of fire cards for DS/NDSL/NDSi, Provide R4, R4i, DStt, iEDGE, AK2i,M3,M3i,N5
    www.zstar.hk

  • How to define the application parameter 'sap.xss.BaseConfigurationID'

    Hello All,
    I am developing a webdynpro ESS custom self service application. I have completed the development of the DC. But at the end when I am creating the application for the DC, I am not able to figure it out how to define the application parameter 'sap.xss.BaseConfigurationID' for the application. I have defined remaining all the parameters as specified in the following link.
    [http://help.sap.com/erp2005_ehp_03/helpdata/EN/43/3b95dab4ab1800e10000000a1553f6/content.htm]
    Could any one please detail the process to define the parameter 'sap.xss.BaseConfigurationID' ?
    Thanks a lot.
    Regards,
    Seshu.

    Pick a representative file.
    Get info. (Command-i)
    There you will see a place "Open with" where you can select the application for that file.
    Hit the "Change all..." button to do this for all files of this type.
    charlie

  • How to define the default activity for an unbounded task flow?

    In the new "Fusion Developer’s Guide for Oracle Application Development Framework 11g Release 1" documentation at the bottom of page 14-3 it states "An unbounded task flow .... contains a default activity, an activity designated as the first to run in the unbounded task flow, because an unbounded task flow does not have a single point of entry."
    What I can't find is how to define the default activity in an unbounded task flow and where this is recorded? Can we set this via the task flow diagrammer, and which configuration file is it stored?
    I note the first time I run the application with an unbounded task flow a dialog asks me which of the activities in the adfc-config.xml file to make the default, but I can't find where this is recorded.
    Anybody have any ideas?
    Thanks,
    CM.

    Chris,
    In fact this information is nothing that belongs into the taskflow meta data because unbounded taskflow have more than one entry point and there is no notion of default. Its a tools setting (JDeveloper) we had before
    Frank
    Message was edited by:
    Frank Nimphius

  • How to display the library folder in Mountain lion

    How to display the library folder in Mountain lion

    Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.

  • How to define the dynamic navigation between two component in web ui

    Hi All,
    I have a requirement to create a new assignment block in accounts overview screen .
    1.Created new view(Table view) in the BP_HEAD component.
    2.Created new button on the table view toolbar .
    3.If the user clicks the new button it should navigate to interaction log component(BT126H_CALL).
    Please hekp me step 3 how to do .
    I have checked planned activity assignment block in the account but is dynamic navigation.
    Please explain me how to define the dynamic navigation between two components.
    What is window delegate .
    Thanks,
    Venkyy

    Hi ,
    Kindly follow the link , this will be helpful for your issue :
    http://wiki.sdn.sap.com/wiki/display/CRM/CRM-NavigatingtoyourcustomBSP+component

  • How to define the Market Sales KF, in order to receive the desired result

    Hi all,
    I dont know how to define the Market Sales Kefigure, in order to get the following result. Any hint is more than welcome.
    Prd_ID = Product ID
    PS  =  Product Sales
    M_ID = Market ID
    MS  = Market Sales
    MS%  = Market Share ( formula in BEX PS/MS)
    <b>
    Prd_ID;PS;M_ID;MS;MS%</b>
    A00001;10;MRK1;100;10%
    A00002;20;MRK1;100;20%
    <b>SBTOT</b>;30;MRK1;100;30%
    B00001;40;MRK2;200;20%
    B00002;30;MRK2;200;15% 
    <b>SBTOT</b>;70;MRK2;200;35%
    <b>GTOTL</b>;100;MRKX;300;33,3%
    Products A00001 and A00002 compete in the same market. So the individual marketshares should be calculated against the market MRK1(200), e.g. 40/200 and 30/200.
    The totals now, of the A00001 and A00002 products(3040) should be compared against <b>the same market</b> MRK1(200),</b> and <b>not against</b> the MRK1MRK1(200+200).
    Thanks
    Vasso Siagri<b></b><b></b><b></b>

    Maik,
    thank you for your answer, but I am afraid this is not giving the desired results.
    What I want----
    >What am getting
    Prd_ID;PS;M_ID;MS;MS%
    A00001;10;MRK1;100;10%  ---> 10;MRK1;200;5%
    A00002;20;MRK1;100;20%  ---> 20;MRK1;200;10%
    SBTOT;30;MRK1;100;30%   ---> 30;MRK1;200;15%
    B00001;40;MRK2;200;20%  ---> 40;MRK2;400;10%
    B00002;30;MRK2;200;15%  ---> 30;MRK2;400;7,5%
    SBTOT;70;MRK2;200;35%   ---> 70;MRK2;400;17,5%
    GTOTL;100;MRKX;300;33,3% ---> 1000;MRKX;600;16,7%
    Neither resticted KF restricted on Market ID is working for many markets; it is working only if you analyze one market id.
    Any idea? bw idea? What actually I need is aggregation of unique records in terms on market id.

  • How To Unhide the Library Folder in Mac OS X Lion

    How To Unhide the Library Folder in Mac OS X Lion

    Ken30 wrote:
    How do you unhide in a Time Machine File?
    What are you trying to do?
    If in the Time Machine interface you wish to restore something in your Library, type cmd-shift-g, then type ~/Library into the path field and hit Go.
    If you are browsing the Time Machine backup using the Finder, I hope you never wanted to use that backup again as you are more than likely going to corrupt it to the point of it not working any longer. If that is the case, you can do the same thing with the Go to Folder command above, just use the full path to where your backup is mounted. The easy way to find the path would be to open another Finder window and navigate to your home folder on the backup. Drag that home folder to an empty Go to Folder path field and it will fill in the full path, then add /Library on the end.

Maybe you are looking for

  • Is there a policy map difference from 8.0 to 9.0?

    We have been testing blocking a few select websites (no web filtering yet) with some of our smaller location ASA's.  Following the document at: https://supportforums.cisco.com/docs/DOC-1268 I have been successful at sites which run ASA's with version

  • What is the ipod 4 new model, I mean look at the walmart site, it says (new model) what does that mean?

    what is the ipod 4 new model, I mean look at the walmart site, it says (new model) what does that mean? Look at this link :  http://www.walmart.ca/canada-estore/search/searchcontainer.jsp?_DARGS=/canada-es tore/search/fragments/cataloghierarchy.jsp I

  • Hyper link page item.

    Hi! I have a page item P20_DOMAIN_NAME. when any one click on it, it will take me to another page. In item computation i have this code. ''||:P20_DOMAIN_NAME||'.taxwisepartner.com'; but when i run the page itstead of showing 'http:browntaxes.taxwisep

  • Creative Cloud Application - Home - Hourglass Never Stops

    - Windows 8 64 bit - Creative Cloud When I open up Creative Cloud and proceed to the Home tab, the "hourglass" (or the Windows 8 equivalent of an hourglass) never stops. The circle keeps spinning and spinning. Yet, I can to to the "Apps" tab in Creat

  • Re: Tecra A9 -no sound with Win 7

    Hi, I installed Windows 7 and everything works fine except the sound. The sound card driver for Windows 7 is already installed. The Speakers as well as the microphone is detected but I can not hear anything. I read that the BIOS update may help.... T