Using Spaces for task separation?

I was hunting around on the internet to try to find a way to have tasks separated in spaces rather than applications. I came across an article that said with the new 10.5.5 update this should be possible. The article said I just had to uncheck the box for the "When switching to an application..." feature and possibly "restart my doc". I unchecked the box but I have no idea what restarting a doc entails (although I did restart the computer just in case that would solve it), and whenever I drag say one safari window into a different space, all the others follow. So, my first question is: in 10.5.5 is it possible to have an application running in two spaces at once? If so, how do I tell the computer it should let me do this?
Secondly, I have a monitor hooked into my mac book and the computer seems to resize windows on the secondary monitor randomly (or so it would seem). So, one minute I'll be looking at a document on the attached monitor and then writing and/or searching the internet or checking my mail for a bit on the laptop screen and then when I glance at the document on the other monitor it will often be a different size than it was a moment before, forcing me to resize it over and over in order to read between bouts of writing which (needless to say) gets slightly frustrating. Anyone know of a reason why this is happening or have any clue how to make it stop?
Hope this question is posted in the right spot! If not let me know and I'll move it
Thanks a ton in advance!

I never had any problems with Word 2004, but Office 2008 has been nothing but a disaster. I usually have Word open in one space, and Powerpoint in another (taking notes on slides for class) But Office will always give me problems with shooting windows into different spaces, or automatically sending me to different spaces. A lot of times the Toolbox completely disappears, and the only way to bring it back is to restart it. It is EXTREMELY frustrating. I have been able to have a Word document open in one space, and another Word document open in another. Sometimes it gathers them all together, sometimes it doesn't. It is way sketchy.

Similar Messages

  • Monitoring Used (%) space for tablespaces

    Hi everyone,
    I am currently using:
    Redhat Linux ES 5 2.6.18 and also
    Oracle 10g Release 2 for Linux x86 R10.2.0.3
    While monitoring my Tablespaces using OEM Database Control, I notice that two tablespaces were almost full.
    [SYSAUX] - Size: 290MB , Used 283MB (97% full)
    [SYSTEM] - Size: 320MB, Used 313MB (98% full)
    When I try to locate the datafiles of both tablespaces in its directory (/home/dba/oracle/oradata/oracle), it shows the allocated size (290MB for sysaux01.dbf & 320MB for system01.dbf) and not the used space.
    I got three questions to ask over here:
    1st- Why there isn't any warnings or alarms even though the tablespaces exceeds the critical size?
    2nd- How come the datafiles shows the allocated size of the tablespaces and not the Used space?]
    3rd- How can I find & monitor the actual used space of the tablespaces?
    4th- I have enabled the AutoExtend function but I am worry whether is there any other concern?
    I am still very new here.
    Please pardon me for anything that is improper.
    Looking forward for your expertise, guidance & help.
    Thanks for your attention.
    -Regards-
    ++ Kef Lim ++

    Hi,
    Here you have some scripts:
    TABLESPACE USAGE NOTES:
    Tablespace Name - Name of the tablespace
    Bytes Used - Size of the file in bytes
    Bytes Free - Size of free space in bytes
    Largest - Largest free space in bytes
    Percent Used - Percentage of tablespace that is being used - Careful if it is more than 85%
    select     a.TABLESPACE_NAME,
         a.BYTES bytes_used,
         b.BYTES bytes_free,
         b.largest,
         round(((a.BYTES-b.BYTES)/a.BYTES)*100,2) percent_used
    from      
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES
              from      dba_data_files
              group      by TABLESPACE_NAME
         a,
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES ,
                   max(BYTES) largest
              from      dba_free_space
              group      by TABLESPACE_NAME
         b
    where      a.TABLESPACE_NAME=b.TABLESPACE_NAME
    order      by ((a.BYTES-b.BYTES)/a.BYTES) desc
    SET SERVEROUTPUT ON
    SET PAGESIZE 1000
    SET LINESIZE 255
    SET FEEDBACK OFF
    PROMPT
    PROMPT Tablespaces nearing 0% free
    PROMPT ***************************
    SELECT a.tablespace_name,
           b.size_kb,
           a.free_kb,
           Trunc((a.free_kb/b.size_kb) * 100) "FREE_%"
    FROM   (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) free_kb
            FROM   dba_free_space
            GROUP BY tablespace_name) a,
           (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) size_kb
            FROM   dba_data_files
            GROUP BY tablespace_name) b
    WHERE  a.tablespace_name = b.tablespace_name
    AND    Round((a.free_kb/b.size_kb) * 100,2) < 10
    PROMPT
    SET FEEDBACK ON
    SET PAGESIZE 18
    Set Termout  On
    Set Heading  On
    clear breaks
    break on contents -
    skip 1
    compute Sum of alloc used free nbfrag on contents
    column tblsp         format a20 wrap          heading  "Tablespace Name"
    column Alloc         format 999,999           heading  "Alloc|(Mb)"
    column Free          format 999,999           heading  "Free|(Mb)"
    column used          format 999,999           heading  "Used|(Mb)"
    column pused         format 990.9             heading  "%|Used|Space"
    column fragmax       format 99,999.9          heading  "Largest|Free|Ext.(Mb)"
    column nbfrag        format 99999             heading  "Nb|frag"
    column contents      format a10               heading  "Content"
    column pct_ext_coal  format 999                     heading  "% Ext.|Coal."
    column ext_manage    format a7 wrap           heading  "Ext.|M."
    column autoext       format a7 wrap           heading  "Auto|Ext."
    select
           contents
         , nvl (dt.tablespace_name, nvl (fsp.tablespace_name, 'Unknown')) tblsp
         , alloc
         , alloc - nvl (free, 0)       Used
         , nvl (free, 0)               Free
         , ((alloc - nvl (free, 0)) / alloc) * 100  pused
         , nbfrag
         , fragmax
         , dfsc.pct_ext_coal pct_ext_coal
         , dt.ext_manage
         , df.inc                           autoext
      from
           ( select sum (bytes)/1048576     free
                  , max (bytes)/1048576     fragmax
                  , tablespace_name
                  , count(*)                nbfrag
              from  sys.dba_free_space
             group  by tablespace_name
           ) fsp
        ,  ( select sum(bytes)/1048576      alloc
                  , tablespace_name
                  , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')     inc
               from sys.dba_data_files sddf
                  , sys.filext$        aut
              where sddf.file_id       =  aut.file#   (+)
              group by tablespace_name
                     , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
              Union
              select sum(bytes)/1048576      alloc
                   , tablespace_name
                   , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')    inc
                from sys.dba_temp_files sddf
               group by tablespace_name
                      , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
           ) df
        ,  ( select contents
                  , tablespace_name
                  , initial_extent/1024     initial_ext
                  , next_extent/1024        next_ext
                  , pct_increase
                  , max_extents
                  , min_extents
                  , Substr(extent_management,1,5)       ext_manage
               from dba_tablespaces
           ) dt
         , ( select percent_extents_coalesced    pct_ext_coal
                  , tablespace_name
               from dba_free_space_coalesced
           ) dfsc
    where
           fsp.tablespace_name  (+)   =   dt.tablespace_name
       and
           df.tablespace_name   (+)   =   dt.tablespace_name
       and
           dfsc.tablespace_name (+)   =   dt.tablespace_name
    order
        by contents
         , pused desc
    ;Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • How to use Space as field Separator?

    I have a flat file with space (multiple spaces between different fields) as a delimiter. Whenever I try to upload the file it doesn't allow me to perform. In the external tab when i chose CSV file and do not give any value in the file separator, it just pops up an information box '00H not allowed as a separator' and when I try to use ASCII /hex value '0040' still get the same message. The problem is, file is coming from 3rd party and they don't want to change the separator as comma or tab delimited CSV file.
    1) Is there any program which I can use in TR to convert space as coma or tab delimited and then feed the value to different fields? OR
    2) How to read the one line as one field and then feed to multiple fields?
    3) Any other solution/idea?
    please help me out.
    Thanks,

    Hi Mau,
         Goto you Flatfile Datasource -> Extraction Tab -> Data Format (CSV) -> Data Seperator -> ' ' ( ie. space ).
         It will consider the space as the seperator.
         Hope it helps you.
         Assign points if it helps you.
    Regards,
    Yokesh.

  • Different used space for CSV in cluster manager / explorer

    Hi everyone,
    in our Hyper-V Cluster consisting of two 2012 Servers we have got the following problem:
    The used disk space in windows Explorer is roughly 1TB less than the used disk space which is shown in the Failover Cluster Manager. In other words: The CSV is nearly full and I don't know why.
    Diskpart, failovercluster Manager and every disk tool I tried is showing 6TB as disk size and although Explorer is showing only 5TB data the cluster is showing only 100GB free.
    any help?
    thanks,
    Michael

    Hi,
    Did you used the dedup with your CSV?
    Thanks.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • For Superior Stability and Responsiveness: Use Spaces for Every App as Much as Possible

    Hi. It's great to share this experiement. It's Hard to Crash Mountain Lion OS X with Spaces or even bring out the spinning wheel.
    Any OS (it's good to have Windows, OS X and Linux all at the same time, best of all worlds) should probably be stable if each app was on a separate desktop environment or separate account (with the main one logged in, in the background). The permission were repaired (it crashed the last time I tried this with just one Spaces) using Disk Utility in Mountain Lion's Recovery partition.
    Testing the overall stability and responsiveness: more than 12 app including Cinebench 12, Winclone, 2 3D Games from App Store (not Crysis or Rage but helps stress things along with Cinebench), all default Mountain Lion apps except Time Machine launched in one windows , Winclone cloning BootCamp a Win8 (upgraded from Win7) for hours, playing two 3D games (shooter Uberstrike and Marble World, fulscreen windowed) from App Store, Carbon Copy Cloner, watching a fullscreen movie on VLC, Activity monitor and iStats to see how the temperatures, CPU, GPU and memory are doing), quicktime playing a catholic chant in a loop- anything to bring the Mac, the whole system to a crawl, spinning wheel of death or to a crash which it didn't. Launching and relaunching app on their on Spaces was responsive even with all the system taxed at almost 100%.
    There was around 12 Spaces running at the same time on the iMac i7 with 8GB. It's not the most convenient way to switch between apps (having everying in one Spaces and clicking on it still the best, followed by swithing via Dock), the gestures and mission control significantly made it easier to have so many Spaces and not that much of a burden to manage when you get used to it. It's much better than Windows 8 implementation for a less cluttered environment. The command-tab is good to combine with Mission Control gestures for switching from fullscreen apps.
    .All that while running Cinebench 11.5 which taxes the CPU at almost and GPU 100% but surprisingly the fps shooter and Marble Worlds 3D games didn't crawl as I expected.Having an ambient temperature of about 30 Celsius, with full load the CPU temp was at 66, GPU was at 88, fans where surprisingly at CPU and optical disk fans were only at 900+ rpm with hardisk at 1000+ rpm which is the only 'side effect' to having taxing the system like this (I still have Applecare and Time Machine backup for a worry free test) is it confuses the SMC because without load all fans were at 1000+ rpm (I brough it back to normal with a SMC reset). All these for hours and there's still 1GB memory to use out of the 8GB (with 100GB hardisk space).
    When I closed all 11 Spaces and brought all the apps to just one desktop, it wasn't as stable nor as responsive like I have experienced before. Marble World when you switch to it, would have artifacts, the game was almost a slide show. If you have lots of clips to copy past from on the Desktop and you have to hide all to see the finder and then Show All, Carbon Cloner would not show up right away and would have that spinning wheel. I quitted all the apps to prevent a crash and to bring temperatures down.
    At first the Mountain Lion was almost a regret with some crashes but with Spaces, Misson Control and gestures for Mission Control, It's bring out the value and it just incredibly stable and responsive (Linux have their multiple desktop environment but Apple's implementation makes you see everything like a map almost bringing the convenience of just one desktop with all the apps placed strategically so you can click and switch to it faster). It's a great way to do a lot of things when you need to without worrying about slowing things down to a crawl.
    Thank you for your time.
    God bless.

    Hi. It's great to share this experiement. It's Hard to Crash Mountain Lion OS X with Spaces or even bring out the spinning wheel.
    Any OS (it's good to have Windows, OS X and Linux all at the same time, best of all worlds) should probably be stable if each app was on a separate desktop environment or separate account (with the main one logged in, in the background). The permission were repaired (it crashed the last time I tried this with just one Spaces) using Disk Utility in Mountain Lion's Recovery partition.
    Testing the overall stability and responsiveness: more than 12 app including Cinebench 12, Winclone, 2 3D Games from App Store (not Crysis or Rage but helps stress things along with Cinebench), all default Mountain Lion apps except Time Machine launched in one windows , Winclone cloning BootCamp a Win8 (upgraded from Win7) for hours, playing two 3D games (shooter Uberstrike and Marble World, fulscreen windowed) from App Store, Carbon Copy Cloner, watching a fullscreen movie on VLC, Activity monitor and iStats to see how the temperatures, CPU, GPU and memory are doing), quicktime playing a catholic chant in a loop- anything to bring the Mac, the whole system to a crawl, spinning wheel of death or to a crash which it didn't. Launching and relaunching app on their on Spaces was responsive even with all the system taxed at almost 100%.
    There was around 12 Spaces running at the same time on the iMac i7 with 8GB. It's not the most convenient way to switch between apps (having everying in one Spaces and clicking on it still the best, followed by swithing via Dock), the gestures and mission control significantly made it easier to have so many Spaces and not that much of a burden to manage when you get used to it. It's much better than Windows 8 implementation for a less cluttered environment. The command-tab is good to combine with Mission Control gestures for switching from fullscreen apps.
    .All that while running Cinebench 11.5 which taxes the CPU at almost and GPU 100% but surprisingly the fps shooter and Marble Worlds 3D games didn't crawl as I expected.Having an ambient temperature of about 30 Celsius, with full load the CPU temp was at 66, GPU was at 88, fans where surprisingly at CPU and optical disk fans were only at 900+ rpm with hardisk at 1000+ rpm which is the only 'side effect' to having taxing the system like this (I still have Applecare and Time Machine backup for a worry free test) is it confuses the SMC because without load all fans were at 1000+ rpm (I brough it back to normal with a SMC reset). All these for hours and there's still 1GB memory to use out of the 8GB (with 100GB hardisk space).
    When I closed all 11 Spaces and brought all the apps to just one desktop, it wasn't as stable nor as responsive like I have experienced before. Marble World when you switch to it, would have artifacts, the game was almost a slide show. If you have lots of clips to copy past from on the Desktop and you have to hide all to see the finder and then Show All, Carbon Cloner would not show up right away and would have that spinning wheel. I quitted all the apps to prevent a crash and to bring temperatures down.
    At first the Mountain Lion was almost a regret with some crashes but with Spaces, Misson Control and gestures for Mission Control, It's bring out the value and it just incredibly stable and responsive (Linux have their multiple desktop environment but Apple's implementation makes you see everything like a map almost bringing the convenience of just one desktop with all the apps placed strategically so you can click and switch to it faster). It's a great way to do a lot of things when you need to without worrying about slowing things down to a crawl.
    Thank you for your time.
    God bless.

  • Advantages of using partitions for tasks

    I like my setup on one partition.  But I'm wondering, are there advantages to using separate partitions for /, /home, /boot, and swap?
    Simple question, but I'd like to know the answer from many sources, cause it seems like the type of question that has multiple answers.

    My laptop and a little server in the home which I'll set up to the face the internet at some point so I can get to files/music etc have split partitioning: / /usr /var /home /tmp (via tmpfs) and separate /boot (needed for lvm/encryption/funny filesystems). I set up the partitions on advice of some of the hardening guides (see wiki). As well as allowing for problems with huge log files crashing the system as mentioned above, the idea is to have separate partitions to restrict what can be done in each area of the file system via mounting options in fstab. Eg, one of the options you could give to /var and/or /home would be noexec, so no exectuables/scripts could be run. If someone breaks in, it should make it harder to gain complete control.
    It's prob overkill, but I am a big fan of peace of mind It doesn't take much longer to set up (make it lvm so you don't have to worry about getting the partition sizes wrong) and it doesn't hinder how my system runs in any way.

  • How come I can't put music on my ipod? I already have a fair amount of music on my ipod but I have enough space for more. I am using a new computer with itunes and it is telling me if I wasnt to put the new music on my ipd i need to erase my ipod HELP!

    How come I can't put music on my ipod? I already have a fair amount of music on my ipod but I have enough space for more. I am using a new computer with itunes and it is telling me if I wasnt to put the new music on my ipd i need to erase my ipod HELP!

    Because you can only synce with one iTunes library and you are switching libries by using the new computer. To nake this yyour syncing computer:
    - Move all the media(apps, music, synced video and photos etc) to the new computer.
    - Connect the iPofd yo the computer and bake a backup fo the iPod by right clicking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup.
    Note that the backup that iTunes makes doe not include media.
    To move mdia to the new computer see:
    iTunes: How to move your music to a new computer
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer

  • How to find out the used space and free space in the DB for attachments

    Hi,
    In CRM 5.2 web UI, we can save a transaction by saving attachments like work documents or text files.
    Could someone help me find out the used space, free space, maximum capacity on the CRM DB for these attachments.
    Thanks & Best Regards,
    Ramesh.

    Hi,
    check with  below table
    TNAPR   ---  Processing programs for output
    and NACE Transaction code
    NACE  --  out types
    Regards,
    Madhu

  • Verbatim disk drive historically used only for time machine backups. Recently i added some other media files to use some of available space without partitioning, the disc now refuses to mount in finder despite appearing in disk utility. Repair fails. HELP

    Sorry to elaborate a bit more.
    I have used time machine since owning my mac book pro with no issues. i keep the timemachine backups on an external hard drive made by Verbatim. This has not external power source.
    Recently i decided to use up some of the available space on the external verbatim disk drive to store some movie files which were sitting on my macbook pro.
    Therefore i created a new folder outside of the time machine backup folder and stored the movie files in there.
    From then on Time machine failed... and a few days later i noticed it was not mounting in 'finder'
    Therefore i used disk utility to see if it was recognising it. Which i was. However when i try to repair it the repair process fails.
    In disk utility i am presented with 1 TB Samsung HN M10 which has a child called Verbatim HD.
    The 1TB Samsung hardware appears fine, but the verbatim disk i am unable to fully verify and fix.
    Does this mean i have lost all my back ups?
    Have I lost all the media that i put on there?
    Is there any way to fix this?
    Any help would be appreciated.
    didier07...

    To summarize: You used an external Verbatim HD for your TM backups. Then, you stored some movie files on the "spare" space on the Verbatim drive. Now, Disk Utility isn't being recognized, and repair is disabled. Your home Samsung drive is working fine, but the Verbatim cannot be verified.
    The problem, I believe, is that the external Verbatim drive wasn't partitioned. There should be two partitions: one for TM backups, the other for video. That way, you can perform backups, and still retain some space for video or somesuch.
    Frankly, I don't know how to fix this except through the following. (1) Erase the Verbatim drive, (2) Create a new blank space and format it, (3) Make two partitions - one for backup, the other for video. (4) Run TM through one partition, but switch to the other for your videos.  The better solution might be to have one dedicated drive (perhaps the Verbatim) for backups, and another dedicated drive for video backups; that way, you'll have plenty of space for expansion.
    I hope someone will correct me if I'm incorrect, but I believe you've essentially lost your backups and media. I don't know how you can retrieve that clump of the now-undifferentiated data on the Verbatim drive. To retrieve any lost data, you're going to require another external drive that's larger in capacity, as well as data recovery software; don't expect encouraging results. If you're desperate, there are firms like Drive Savers that can offer a more comprehensive solution - at a cost.
    Post if you have questions, or additional concerns!

  • Where is "Reserve space for disk use" in iTunes? Docs are out of date

    Hello,
    Where did "Resereve space for disk use" go in iTunes? I can't find it any more.
    This is major problem because if I want to auto-fill my phone (I don't have time to constantly set up playlists) I then get constantly get errors that my phone is full and that I can't take photos. This is really frustrating.
    If I got to iTunes Help, the documentation is wrong and out of date. I have iTunes 11.1.5 and if I go to Help -> iTunes Help and look at this section, it's completely wrong. See attached screenshot.
    The whole iTunes UX has become a confusing mess, I hope you're looking for a new product manager for it.
    Thank you,
    Geoff

    I am having the same issue. It even tells you that you can reserve space on your phone in the iTunes help, but I can not figure out how to open the Autofill Settings window in iTunes. Here is what it says in help of iTunes 12.0.1.26:
    Autofill settings
    You can use Autofill to add songs to your iPod, iPhone, or iPad with a single click. You can set Autofill to select songs at random, or you can customize your settings.
    You can select these options in the Autofill Settings window:
    Other options are available at the bottom of the iTunes window when you're viewing music on your device:

  • 1.1 GB of space for other use, but no music, no books nor Videos are sync.

    My IPad4 says it has 1.1 GB of space for "other" use, but I don´t have anything on this Ipad, I even took away the music, books and Videos. How can I know what others really stands for? Is there a way of errasing this information?

    Other is usually around 1 GB...
    A  ' Large Other ' usually indicates Corrupt Data...
    First Try a Restore from Backup... But... if the Large Other Persists, that is an Indicator of Corrupt Data in the Backup... Then a Restore as New is the way to go...
    Details Here  >  http://support.apple.com/kb/HT1414
    More Info about ‘Other’ in this Discussion
    https://discussions.apple.com/message/19958116

  • Why don't I see shapes (created with my iPhone 5s) in creative cloud (for iOS) and used space in CC is 0 MB? Where are they stored?

    I installed Adobe Shape on my iPhone (iOS 8) and don't see, where the shapes are saved.
    In CC app for iOS there are no files (and used space in CC is 0 Mb). And I don't see my shapes in your other your apps (for iOS: Ideas, Photoshop Mix).
    How can I export shapes to any files storages?

    The CC app for iOS does not currently show assets in CC Libraries.  The app only shows assets in folders.  Check out this thread for details on how to get your shapes.
    How do I use shapes I create in Adobe Shape?

  • I should have said in my previous message that the iphoto program I am using is for an ipad 2.  I simply want to know how to delete an edited album which contains one photo that I do not want taking up space.

    I should have said in my previous message that the iphoto program I am using is for an ipad 2.  I simply want to know how to delete an edited album which contains one photo that I do not want taking up space.

    OK....I'm stumped.  The message you are seeing is typically there to protect someone from syncing with a different computer/iTunes account.  Is there any way anyone else has used your iPad and possibly connected it to their computer?

  • Can anyone explain Space to me, what is does, what u use it for etc?

    Hi, can anyone explain what Spaces is, like what it does for u and what u would use it for?
    Tracy

    Put a different way: it helps you divide up your work by subject, helping to organize what you see in front of you.
    Before Spaces, all of your work was cluttered together on the screen. If at once you were using Safari, Entourage, Photoshop Elements, iPhoto, QuickTime Player, NetNewsWire (a RSS news aggregator), Finder itself, and whatever else you were using, all of the application windows were strewn around the screen. The only way to get rid of the mess was to quit an application, minimize windows, or hide the application.
    With Spaces, you can simply assign application to its own desktop--almost like having things grouped in different monitors. You could create a Space for your graphics applications, ones that you tended to use together: Photoshop Elements, iPhoto, maybe QuickTime Player. Your Internet applications in another: Safari, Entourage, and NetNewsWire. Some applications can belong to all the Spaces, such as Finder (however you choose).
    That way, when you're doing your graphics work, you only see windows and applications that pertain to that. Want to take a break and go on the Internet? Switching to any of the applications (and you do so by a key combination or a menu) quickly hides the graphics application windows and replaces them with what you use for the Internet. The range of applications you're not working with for now are hidden from you, helping you focus and avoid clutter, but are immediately available.
    I usually limit myself to two spaces (using a secondary space for applications used for writing, such as Scrivener, Dictionary, and the like), but you can make as many as you find helpful.

  • The new appearance of the Notes App is really disappointing. I used it for lists and now it just makes my notes appear to be random paragraphs without visual separation.  Am I missing anyway to customize the App?

    The new appearance of the Notes App is really disappointing. I used it for lists and now it just makes my notes appear to be random paragraphs without visual separation.  Am I missing anyway to customize the App?

    No, you can't customize it.  Try different apps available in the App Store.

Maybe you are looking for