Status bar print thumbnail in CS4?

What happened to the status bar print thumbnail in CS4? I can only get text document sizes, etc. Is there another way to view the print size thumbnail?
Any info appreciated.

http://help.adobe.com/en_US/Photoshop/11.0/photoshop_cs4_help.pdf
see page 640 in chapter 21 "Create a contact sheet"  You can do it either in Bridge (preferred) or by downloading the legacy Optional Adobe Plug-in package.
-markerline

Similar Messages

  • Status bar in CS4 doesn't show print preview

    Hi,
    From what I've seen, not too many people used that... but I just noticed that Photoshop CS4 lacks a feature present in previous versions...
    In CS3, for example, we could click on the Status bar to get a preview of the printed dimension of our image... but it gone now.
    Screen shot of CS3:
    When we clicked on the status bar, it gave us an overview of the printed file size. When we Alt+Click on it, it gave us the informations that we can now see when we click the status bar. When we Ctrl+click, it gave us the same info as when we Ctrl+Click now... That means that the Ctrl+Click was kept and that the left click was replaced by the content of the old Alt+Click...but the regular left click isn't present anymore...
    Anybody have any idea where is that feature now or why they removed it? For those who knew about it, it was a very pleasing feature...
    Nelson

    All part of the new "improved" user interface that came with CS4.
    Like a lot of handy features it's gone.  

  • Printing to pdf is stalled at the status bar stage under acrobat 9.5.4

    I have this issue about printing to pdf. No matter what program (Word, Notepad...) I use to print to pdf by selecting the Adobe PDF option under the choices of "Print" window, this is what would happen:
    1) New windown pops up OK for me to name the pdf file and location to save the file to
    2) Then, the status bar of the pdf printing progress pops up. However, this progress bar would get stuck for ever, not going all the way !!!!
    I have Adobe Acrobat Std 9.5.4 installed. My PC runs win7/home/64bit. I am not using AVG free anti-virus. Avira free anti-virus is running on my PC.
    Please help !!!!  Thanks much !!!!

    Hi, Thanks much for your reply. Unfortunately, it did not my issue:
    1) Print to file: "Print to file" did produce a file. However, this file could not be opened by acrobat.
    2) Restart AcroTray: I did this. Again, It did not solve my issue with printing to pdf. It gets stalled again in the process bar window.
    What is acrobat so difficult?
    Any other idea?  thanks.

  • How to Insert a Status Bar to my application

    Hello all
    I use JBuilder v9 and would like to add a status bar at the bottom of the main
    frame in my program. I checked the manual pages but there is no such class as StatusBar or JStatusBar.
    When I type StatusBar (or JStatusBar) sb = new StatusBar (or JStatusBar) ();
    it gives errror message.
    Does anyone know how to add a status bar to a frame?

    A quick a dirty example:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    public class StatusBarDemo extends JFrame
      private JLabel statusBar;
      public StatusBarDemo()
        JMenu menu = new JMenu("File");
        JMenuItem item = new JMenuItem("Open");
        item.addMouseListener(new StatusBarUpdator("Open a new file"));
        menu.add(item);
        item = new JMenuItem("Print");
        item.addMouseListener(new StatusBarUpdator("Print the current file"));
        menu.add(item);
        item = new JMenuItem("Save");
        item.addMouseListener(new StatusBarUpdator("Save the current file"));
        menu.add(item);
        JMenuBar menuBar = new JMenuBar();
        menuBar.add(menu);
        setJMenuBar(menuBar);
        statusBar = new JLabel(" ");
        statusBar.setForeground(Color.black);
        statusBar.setBorder(new CompoundBorder(new EmptyBorder(2, 5, 2, 5),
                                               new SoftBevelBorder(SoftBevelBorder.LOWERED)));
        Container c = this.getContentPane();
        c.setLayout(new BorderLayout());
        c.add(statusBar, BorderLayout.SOUTH);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
      public static void main(String[] args)
        StatusBarDemo frame = new StatusBarDemo();
        frame.setSize(400,300);
        frame.setVisible(true);
      class StatusBarUpdator implements MouseListener
        private String hoverText;
        public StatusBarUpdator(String text)
          hoverText = text;
        public void mouseEntered(MouseEvent e)
          statusBar.setText(hoverText);
        public void mouseExited(MouseEvent e)
          statusBar.setText(" ");
        public void mouseClicked(MouseEvent e){}
        public void mousePressed(MouseEvent e){}
        public void mouseReleased(MouseEvent e){}
    }

  • Pages 5.0 - Status bar current page & page count?

    How do I show the status bar showing current page and page count? I do not need to see the full thumbnail bar.
    In all prior versions of pages, I could look at the bottom of my window and see my current page and how many pages are in my document.  Now, I glance to the bottom, and I have no idea.  I cannot find any way to turn this on and turning on the thumbnails view does not show this to me at-a-glance because I have to scroll all the way down (through documents hundreds of pages long) to find out how many pages I currently have.
    Please, what am I missing here, how can I make this show up again?
    I mean a quick display here, not adding the page count and numbers to a documents footer.  Although, that would be one way for me to solve this issue, but I do not always want that.

    I wrote a short AppleScript solution that informs about the current document page as a pop-up dialog. This is for Pages v5+ only. I created and saved an Automator Application named CurrentPage to my Desktop. Providing that Pages is running, it will produce the dialog shown in subsequent Automator screen shot.
    Double-click /Applications/Automator and choose New Document, Application, and Choose. Follow the Utilities > Run AppleScript (not Shell Script as shown), and drag Run AppleScript over into the larger window and drop it. Select all of its contents and remove them -- this is just boilerplate.
    Copy and paste the following AppleScript into the now vacant Run AppleScript workflow window. Click the hammer, and File > Save... pick a name, and location to save the application where it is handy. Quit Automator.
    Code:
    -- P
    -- Produce formatted dialog of document name, current page, and page count
    -- Pages v5+ only. Works whether typing in document or scrolling pages.
    -- VikingOSX, June 2014, Apple Support Community - Pages for Mac.
    if not ApplicationIsRunning("Pages") then
      display dialog "Pages must be running to use this utility."
      return quit
    end if
    tell application "Pages"
      activate
      tell front document
      set diagTitle to "Current Document Page"
      set docName to (name as text)
      set thePage to current page
      set curPage to 0
      set pageCnt to page count
      set pnList to its page
      repeat with ndx from 1 to count of pnList
      if thePage is equal to item ndx of pnList then
      set curPage to ndx
      end if
      end repeat
      set vformat to "Document: " & tab & tab & docName & return ¬
      & "Current Page: " & tab & curPage & return ¬
      & "Total Pages: " & tab & tab & pageCnt
      end tell
    end tell
    display dialog (vformat as text) giving up after 15 with title diagTitle
    on ApplicationIsRunning(appName)
      tell application "System Events" to set appNameIsRunning to exists (processes where name is appName)
      return appNameIsRunning
    end ApplicationIsRunning

  • Excel 2010 Status Bar Sum

    I recently switched from Excel 2007 to 2010. In 2007 when I highlighted a range of cells that included hidden cells, the SUM in the status bar only displayed the sum of the visible cells - which was very helpful in determining a) whether the range contained
    hidden cells with values, if I didn't already know, and b) the actual sum that a person would calculate if the worksheet were printed (basically a check against the SUM() function).
    The second feature was particularly important in an industry where we print many reports and want them to be accurate so a user can recalculate the true sum of the numbers he or she is looking at.  However, it appears that in 2010 when highlighting
    a range with hidden values, the status bar SUM includes all values, hidden and visible!  This essentially eliminates any check functionality described above.
    My question is: can I change the settings so the status bar SUM only includes the sum of visible cells??
    It would be EXTREMELY annoying to have to enter a SUBTOTAL() function every time to accomplish what I want.  The advantage of simply highlighting is obviously speed.  I'm not interested in formulas because I know they exist - I only want to know
    if I can accomplish the desired result when highlighting cells.  (Fingers crossed.)

    Re:  Summing across hidden columns not treated the same as summing across hidden rows.
    Oh boy,  you have found an oddity; its new to me and probably to many others.
    As a check, I also did sums across and down in XL2003 and the results are the same as in XL2010
    It doesn't make sense to me and probably could be classified as a bug, if it hadn't gone on for so long.
    I suspect MS is spending all of their Office programming time trying to get Office 2013 to install without crashing.
    This issue probably wouldn't garner any attention.
    Jim Cone

  • Progress indicator in the status bar

    Bridge often does a number of time-consuming activities where it would be useful as a user to know how far along it is, and how far it has to go. Since most of these are done in the background and don't interfere with the user doing more things, a progress meter would be inappropriate. However, the status bar is good place for such info. Currently, the status bar says what it's doing--just not how far along it has to go. Clearly, some operations cannot be known ahead of time, but of those that are known, it'd be great to know where it is in its task.
    dan

    Thanks for you feedback. You wish has been granted (a "nn jobs pending" display indicate the number of thumbnails remaing to be thumbnail or metadata to be extracted, etc.. There are also better and more accurate progress dialogs). Check out the free beta of Bridge CS3 (http://labs.adobe.com/technologies/photoshopcs3/)
    Cheers,
    Arno.
    Bridge Engineering Manager, Adobe.

  • Hide webpage link URL from browser status bar?

    Anyone know how to hide webpage link URL from the browser
    status bar with Dreamweaver CS4? So that when the mouse cursor
    hovers over a link on a webpage, the URL won't be shown in the
    browser status bar. This comes in useful for when I put my email as
    a link on a webpage but I don't want to let my email address be
    known prematurely. I prefer to do this through the Dreamweaver CS4
    interface without coding, if possible. What is the easiest way to
    hide link URL like this? Thanks.

    More than the anal users. Many people use this information to
    decide
    whether they will click on the link. By hiding it, you remove
    that
    extremely valuable security information - for example, a link
    tells you on
    the screen that it is taking you to www.wachovia.com, but the
    status bar
    link tells you it's taking you to
    www.iamahackersiteandwilldrinkyourmilkshake.cn
    I don't think you want to remove that from your site, unless,
    of course, you
    are the webmaster for
    'iamahackersiteandwilldrinkyourmilkshake.cn....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "joeq" <[email protected]> wrote in message
    news:gib1tf$kn7$[email protected]..
    > it can be done - Behaviors > Set Text > Set Text
    of Status Bar.
    >
    > do what you want, but know that it's somewhat unreliable
    (see the caveat
    > in
    > the DW Behavior box) and that some anal users will
    object to the masking
    > of
    > your links.
    >
    >
    >
    quote:
    Originally posted by:
    ghost zero
    > Anyone know how to hide webpage link URL from the
    browser status bar with
    > Dreamweaver CS4? So that when the mouse cursor hovers
    over a link on a
    > webpage, the URL won't be shown in the browser status
    bar. This comes in
    > useful for when I put my email as a link on a webpage
    but I don't want to
    > let
    > my email address be known prematurely. I prefer to do
    this through the
    > Dreamweaver CS4 interface without coding, if possible.
    What is the
    > easiest way
    > to hide link URL like this? Thanks.
    >
    >
    >

  • Customise ME53N status bar

    Hi All,
    what's the impact if i add print preview button in ME53N ?
    is it advisable to do so ..am curious why PO has that button but PR doesnt have..pls advise

    Hi
    PR is primarily an internal kind of document, so as a rule it does not need special printout form, and on the contrary PO is external document which should be delivered somehow (e.g. in printout form) to a vendor.
    There is no way to add a custom button to the status bar in ME53N, only by modification.

  • Dynamic status bar

    I made up a status bar, but couldn't get it to be updated while some other task is being executed, like several printing jobs. The bar is a simple JPanel with a JLabel. I tried to revalidate the panel and another thread.
    What do I have to do to get the message updated?

    but couldn't get it to be updated while some other task is being executed, like several printing jobs.Its probably because you aren't using Threads. If your printing jobs are executing in the Event Thread then the GUI can't be updated until the printing is finished. The printing code should be moved to a separate Thread.

  • How do I add  "little icons" to my status bar on iPad 2?

    How do I add those  "little icons" to my status bar in iPad 2?

    What little icons might you be talking about? If you are asking about the thumbnail views in Safari, there is nothing that you can do to change the way that Safari works on the iPad. Safari now uses tabs.
    If that's not what you are asking about, please provide some details.
    EDIT - OK. I get it now .....
    Message was edited by: Demo

  • Xmonad Status Bar Not Appearing

    Hey guys I've been reading through posts and trying to get dzen2 to appear. But it simply doesn't show up.
    So I tried using a default status bar
    main = xmonad $ defaultConfig {
    logHook = dynamicLog
    Provided from
    http://xmonad.org/xmonad-docs/xmonad-co … icLog.html
    and I still do not have any status bars appearing.
    Refer Below, changed my current xmonad configuration.
    My xmonad.hs is based of thayer's configuration.
    Last edited by Jabrick (2011-10-30 22:01:26)

    Ok I've finally got a dzen bar to appear.
    In my xinitrc where i normally start xmonad
    I now have the line
    exec xmonad | dzen2
    But nothing appears in the bar I've tried several examples and it doesn't seem to work.
    Is there something I'm missing?
    I do have a ~/.conkyrc file
    That looks like
    # Conky Config File
    # just log everything to the desktop
    # Main options (alphabetically)
    alignment bl
    background yes
    default_color 606060
    draw_outline no
    draw_shades no
    double_buffer yes
    gap_x 10
    gap_y 10
    minimum_size 100 100
    own_window yes
    own_window_type override
    own_window_transparent yes
    total_run_times 0
    update_interval 1
    use_xft yes
    xftalpha 0.7
    xftfont Verdana:size=8
    # After TEXT is formatted on screen
    TEXT
    ${tail /var/log/everything.log 20}
    This is my  xmonad config file right now....
    If I could just get this to work I can finally tinker around.
    Been frustrating! Urgh!
    --Imports--
    import XMonad
    --Actions--
    import XMonad.Actions.CycleWindows -- classic alt-tab
    import XMonad.Actions.CycleWS -- cycle thru WS', toggle last WS
    import XMonad.Actions.DwmPromote -- swap master like dwm
    --Hooks--
    import XMonad.Hooks.DynamicLog -- statusbar
    import XMonad.Hooks.EwmhDesktops -- fullscreenEventHook fixes chrome fullscreen
    import XMonad.Hooks.ManageDocks -- dock/tray mgmt
    import XMonad.Hooks.UrgencyHook -- window alert bells
    import XMonad.Hooks.SetWMName -- matlab fix
    --Layouts--
    import XMonad.Layout.Named -- custom layout names
    import XMonad.Layout.NoBorders -- smart borders on solo clients
    --Utils--
    import XMonad.Util.EZConfig -- append key/mouse bindings
    import XMonad.Util.Run(spawnPipe) -- spawnPipe and hPutStrLn
    import System.IO -- hPutStrLn scope
    import qualified XMonad.StackSet as W -- manageHook rules
    main = do
    status <- spawnPipe myDzenStatus -- xmonad status on the left
    conky <- spawnPipe myDzenConky -- conky stats on the right
    xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
    { modMask = mod4Mask
    , borderWidth = 2
    , normalBorderColor = "#dddddd"
    , focusedBorderColor = "#0000ff"
    -- , handleEventHook = fullscreenEventHook
    , workspaces = myWorkspaces
    , layoutHook = myLayoutHook
    , manageHook = manageDocks <+> myManageHook
    <+> manageHook defaultConfig
    ,logHook = myLogHook status
    , startupHook= setWMName "LG3D"
    `additionalKeysP` myKeys
    -- Tags/Workspaces
    -- clickable workspaces via dzen/xdotool
    myWorkspaces :: [String]
    myWorkspaces = clickable . (map dzenEscape) $ ["1","2","3","4","5"]
    where clickable l = [ "^ca(1,xdotool key super+" ++ show (n) ++ ")" ++ ws ++ "^ca()" |
    (i,ws) <- zip [1..] l,
    let n = i ]
    -- Layouts
    -- the default layout is fullscreen with smartborders applied to all
    myLayoutHook = avoidStruts $ smartBorders ( full ||| mtiled ||| tiled )
    where
    full = named "X" $ Full
    mtiled = named "M" $ Mirror tiled
    tiled = named "T" $ Tall 1 (5/100) (2/(1+(toRational(sqrt(5)::Double))))
    -- sets default tile as: Tall nmaster (delta) (golden ratio)
    -- Window management
    myManageHook = composeAll
    [ className =? "MPlayer" --> doFloat
    , className =? "Vlc" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "XCalc" --> doFloat
    , className =? "Chromium" --> doF (W.shift (myWorkspaces !! 1)) -- send to ws 2
    , className =? "Nautilus" --> doF (W.shift (myWorkspaces !! 2)) -- send to ws 3
    , className =? "Gimp" --> doF (W.shift (myWorkspaces !! 3)) -- send to ws 4
    , className =? "stalonetray" --> doIgnore
    -- Statusbar
    myLogHook h = dynamicLogWithPP $ myDzenPP { ppOutput = hPutStrLn h }
    myDzenStatus = "dzen2 -w '320' -ta 'l'" ++ myDzenStyle
    myDzenConky = "conky -c ~/.conkyrc | dzen2 -x '320' -w '704' -ta 'r'" ++ myDzenStyle
    myDzenStyle = " -h '20' -fg '#777777' -bg '#222222' -fn 'arial:bold:size=11'"
    myDzenPP = dzenPP
    { ppCurrent = dzenColor "#3399ff" "" . wrap " " " "
    , ppHidden = dzenColor "#dddddd" "" . wrap " " " "
    , ppHiddenNoWindows = dzenColor "#777777" "" . wrap " " " "
    , ppUrgent = dzenColor "#ff0000" "" . wrap " " " "
    , ppSep = " "
    , ppLayout = dzenColor "#aaaaaa" "" . wrap "^ca(1,xdotool key super+space)· " " ·^ca()"
    , ppTitle = dzenColor "#ffffff" ""
    . wrap "^ca(1,xdotool key super+k)^ca(2,xdotool key super+shift+c)"
    " ^ca()^ca()" . shorten 20 . dzenEscape
    -- Key bindings
    myKeys = [ ("M1-<Tab>" , cycleRecentWindows [xK_Alt_L] xK_Tab xK_Tab ) -- classic alt-tab behaviour
    , ("M-b" , sendMessage ToggleStruts ) -- toggle the status bar gap
    , ("M-<Tab>" , toggleWS ) -- toggle last workspace (super-tab)
    , ("M-<Right>" , nextWS ) -- go to next workspace
    , ("M-<Left>" , prevWS ) -- go to prev workspace
    , ("M-S-<Right>", shiftToNext ) -- move client to next workspace
    , ("M-S-<Left>" , shiftToPrev ) -- move client to prev workspace
    , ("M-r" , spawn "xmonad --restart" ) -- restart xmonad w/o recompiling
    , ("M-x" , spawn "chromium" ) -- launch browser
    , ("M-S-x" , spawn "chromium --incognito" ) -- launch private browser
    , ("C-M1-<Delete>" , spawn "sudo shutdown -r now" ) -- reboot
    , ("C-M1-<End>" , spawn "sudo shutdown -h now" ) -- poweroff
    , ("<XF86AudioMute>" , spawn "amixer -q sset Master toggle") --Toggle Volume
    , ("<XF86AudioLowerVolume>", spawn "amixer -q sset Master 2- unmute") -- lower volume
    , ("<XF86AudioRaiseVolume>", spawn "amixer -q sset Master 2+ unmute") -- raise volume
    , ("<Print>" , spawn "import -window root `date '+%Y%m%d-%H%M%S'`.png") --Take a Screenshot

  • Hide URL from Status Bar

    Hi,
    Is it possible to hide the URL from the browser status bar when the mouse moves over a link AND once the link is clicked to hide the URL from the address bar as well ??
    Thanks for any input,
    Regards,
    Brandon

    More than the anal users. Many people use this information to
    decide
    whether they will click on the link. By hiding it, you remove
    that
    extremely valuable security information - for example, a link
    tells you on
    the screen that it is taking you to www.wachovia.com, but the
    status bar
    link tells you it's taking you to
    www.iamahackersiteandwilldrinkyourmilkshake.cn
    I don't think you want to remove that from your site, unless,
    of course, you
    are the webmaster for
    'iamahackersiteandwilldrinkyourmilkshake.cn....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "joeq" <[email protected]> wrote in message
    news:gib1tf$kn7$[email protected]..
    > it can be done - Behaviors > Set Text > Set Text
    of Status Bar.
    >
    > do what you want, but know that it's somewhat unreliable
    (see the caveat
    > in
    > the DW Behavior box) and that some anal users will
    object to the masking
    > of
    > your links.
    >
    >
    >
    quote:
    Originally posted by:
    ghost zero
    > Anyone know how to hide webpage link URL from the
    browser status bar with
    > Dreamweaver CS4? So that when the mouse cursor hovers
    over a link on a
    > webpage, the URL won't be shown in the browser status
    bar. This comes in
    > useful for when I put my email as a link on a webpage
    but I don't want to
    > let
    > my email address be known prematurely. I prefer to do
    this through the
    > Dreamweaver CS4 interface without coding, if possible.
    What is the
    > easiest way
    > to hide link URL like this? Thanks.
    >
    >
    >

  • 2 Flash Questions. 1. Make controller dissapear? 2. Status bar beneath movie?

    How can I make the controller automatically dissapear once the movie starts? Right now the controller appears on top of the movie, and only dissapears if you click somewhere on the page? Secondly, how can I have a status bar beneath the movie, so that a user can quickly movie around to the front or near the end of the movie? Thanks.

    Dedicated streaming from a streaming media server behaves differently than pseudo streaming (aka progressive download).  You can't skip through sections of video unless/until media has fully loaded into cache. If you have an exceptionally long video, you should divide into smaller chapters or segments.  Chapter 1, chapter 2, etc...  Then use a Flash player with Playlist capability to bring all segments into a single player.
    You could do this in a Flash authoring program using action script.
    Wimpy Player is good for this -  http://www.wimpyplayer.com/
    Coffee Cup Video Player is another option - http://www.coffeecup.com/video-player/
    Good luck.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Wmii status bar code not updating.

    I use the wmii tiling window manager and its status bar abilities. The status bar all works fine except the section for getting the CPUMhz (CPU frequency). It does not get updated properly every 2 seconds as it should.
    My code is here:
    # Status Bar Info
    status() {
    echo -n 'CPUTemp:' `expr $(sensors | grep temp1 | awk '{print $2}' | cut -c2-3) + 15` '|' 'CPUMHz:' $(cat /proc/cpuinfo | grep MHz | awk '{printf "%.0f\n", $4}') '|' '/home:' $(df -h | grep sda5 | awk '{print $3}') '|' '/:' $(df -h | grep sda1 | awk '{print $3}') '|' 'RAM:' $(free -m | grep -i /cache | awk '{print $3}') 'MB |' $(uptime | sed 's/.*://; s/,//g') '|' $(date +"%a %b %d %H:%M")
    If anyone can point out my mistake it would be greatly appreciated.

    Are you sure that the CPUMHz is causing your problem?  When I do
    $ sensors
    on my machine, I get 2 lines containing 'temp1'.  If that is happening on your machine, then the `expr $(sensors ...) + 15` of your CPUTemp part will not work as you expect.
    Other than that, I don't know what is causing your problem, but you could replace
    ...'CPUMHz: ' $(cat /proc/cpuinfo | grep MHz | awk '{printf "%.0f\n", $4}')...
    with
    ..."CPUMHz: $(awk '/MHz/ { printf "%.0f", $4}' /proc/cpuinfo)"...
    If that doesn't help, you could try
    ..."CPUMHz: $(( $(</sys/bus/cpu/devices/cpu0/cpufreq/cpuinfo_cur_freq) / 1000 ))"...
    although on my system, that file is readable only by root.  I don't know why it is set up that way.
    You could also break up that long line so that it is easier to read.
    status() {
    echo -n "CPUTemp: $(( $(sensors | awk '/temp1/ {print $2}' | cut -c2-3) + 15 )) | "
    echo -n "CPUMHz: $(awk '/MHz/ { printf "%.0f", $4}' /proc/cpuinfo) | "
    echo -n "$(df -h | awk '/sda[15]/ {printf "%s: %s | ", $6, $3}')"
    echo -n "RAM: $(free -m | awk '/\/cache/ {print $3}') MB | "
    echo -n "$(uptime | sed 's/.*://; s/,//g') | "
    echo -n "$(date +"%a %b %d %H:%M")"

Maybe you are looking for