Fbcondecor fails to load image

I have installed fbsplah and fbcondecor.
It works well if I use the themes "arch-black" and "arch-banner".
However, when I change my own picture, it fails to load either silent or verbose mode.
I've wonder whether the size of my picture is too large, but I replaced a small one, either.
Anyone knows?

As you mentioned you want to use this image which is 1280x720. I assume you have the same resolution in tty. If not, you have to scale the image to the right one and use that resolution to the steps I describe below.
We'll go on the easy way and edit the arch-black theme in order not to create a new one. Browse in /etc/splash/arch-black/images, and rename silent-1280x720.png to silent-1280x720.png.bak and verbose-1280x720.png to verbose-1280x720.png.bak.
As root
cd /etc/splash/arch-black/images
mv silent-1280x720.png silent-1280x720.png.bak
mv verbose-1280x720.png verbose-1280x720.png.bak
Then we'll copy your image (which is cool btw! ) to /etc/splash/arch-black/images. As root
cp yourimage.png silent-1280x720.png
cp yourimage.png verbose-1280x720.png
Do a test to see if all went right.
Last edited by maevius (2010-10-10 20:14:17)

Similar Messages

  • Check printing - failed to load image

    hello
    i have an issue with printing checks. a long standing one.
    my problems started when i put an image on a check. i wanted to add a signature image. once i did that, the popup that came up when i print a check did not come up. only for one user. i tried to solve the problem but it never got sorted out. so i created another username and removed the old one and it was working fine.
    next i had an issue with the check not printing on blank pages for overruns only for one customer. to test why this was happening, i went to print preferences and and tried changing the maximum lines from 25 to 20. it popped a message saying 'failed to load image'. i ignored it. after that, i have now started to get the same problem of not getting the confirmation message when a check is printed.
    why is this happening? is my only solution to delete this user and recreate one? any suggestions?

    Hi,
    For the image related issue:
    +Since it is a User specific issue,we would require the difference in permissions and security settings for that particular user and for a user for which it is working.
    +What is the format of the picture (.JPG, >GIF etc.)
    +If this happens only for one super user then try to create a new super user and test.
    Regards,
    Abhinav Banerjee
    SAP Business One Forums Team
    Edited by: Abhinav Banerjee on Nov 22, 2008 3:20 AM

  • Failed to load image file-manager

    Hello everybody,
    I've recently install ArchLinux (0.6) on my machine. Then do a pacman -Sy and pacman -Su and fresh install xfree86, gnome and gnome-extra but when I run into gnome a window error appears:
    error
    Failed to load image file-manager
    Details: file not found
    I can't see mostly of the icons, like the foot of gnome in applications, the icon of file browser, the show desktop ..
    what can it be?
    well, thanks in advance.
    Ps: xscreensaver should be added as a dependency when pacman -S gnome
    Ps2: sorry my poor english

    Blaasvis wrote:i am aware, this was caused by the gtk2 update
    Yes, you're right.
    To solve (until a next release) I done:
    pacman -Rcd gtk2
    pacman -A /var/cache/pacman/pkg/gtk2-2.4.0-1.pkg.tar.gz
    And avoid to do pacman -Su ...
    Thanks and bye.

  • Aperture fails to load images from CF card, now not able to open

    I have a new Canon 5D Mark III camera and was sold a  Lexar SD Professional 32 GB card and a Lexar Professional UDMA 7 Compact Flash 32 GB card.  Downloading the images from the camera is a problem.  I am using  a Mac Book Pro 15" with operating system OSX 10.6.8.   Aperture is on a Lacie external hard drive and now fails to open.  Yesterday, a message saying 'unreadable files' would show and a few images would be saved to Aperture.  Also, later, an 'unrecognizable format' message would appear. Before it stopped working, it would download one or two selected images but not a large number of images.
    Any solutions?  Any comments would be appreciated.  Thank you!

    Thanks Ernie!  The images would not load from the camera with the USB camera supplied cable.  Yes, the MBP has slot for the SD card and it downloads the images. 
    The Aperture library is on the LaCie external HD.  Don't know if the drive is formatted as OS X extended.
    After posting the entry, I went to the local Staples store and purchased a Verbatium card reader and lo and behold, the world is fine.  The Aperture has returned and I was able to download all the CF card images.  The card reader would not read the SD card despite having it listed as one of the cards it's able to read.  Don't know what's happening here but at least I can use the MBP slot.
    To me, it's strange!  It was all looking quite grim!  Thank you for your assistance!

  • ImageIcon fails to load image from known source

    Hello,
    I have tried multiple ways to use ImageIcon to place an image within a JFrame.
    I have tried to place directly on the JFrame using drawImage and within a JLabel.
    I have tried multiple sources such as fully qualified regular files to the root and filenames relative to the current project. I have also tried using URLs.
    I am executing this project from Eclipse and have used both Windows and the Mac.
    My debugging code tells me the load of the image is not successful.
    Thank you for your help with this problem.
    ====================================================================
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
       class Main extends JFrame implements ItemListener {
         Image image;
         Image imagecopy;
         String imagefile;
         URL imageurl;
         String strslnts = "Slavery notes";
         String strnsnts = "North & South notes";
         String strwpnts = "Weapons notes";
         String strbtnts = "Battle notes";
         int frwidth, frheight, il, it;
         List stuslist;
         Main() {
              super("The Civil War as Presented by Garrett Neuman");
              imagefile = "file:///Users/teacher/Desktop/garrett/CivilWar/flags.gif";       
              image = getToolkit().getImage(imagefile);
              setIconImage(image);
              frwidth = 1024;
              frheight = 735;   //leave room for task bar
               WindowEventHandler weh = new WindowEventHandler();
               addWindowListener(weh);
               Insets insets = getInsets();
              il = insets.left; it = insets.top;
               setSize(frwidth, frheight);
              setResizable(false);
              try {imageurl = (new URL("http://www.ariped.com/01-pat_metheny_01.jpg"));}
              catch (MalformedURLException e) {stuslist.add("malformed url");};
              ImageIcon icon = new ImageIcon(imageurl);
              int fstatus = icon.getImageLoadStatus();
    //         stuslist.add(String.valueOf(fstatus));
              JLabel iconLabel = new JLabel(icon);
              setContentPane(iconLabel);
              setVisible(true);

    Thanks for the advice on SSCCE. This cracked the case for me and will be useful in the future.
    One observation I gained from testing is that even regular files seem to need to go through the URL process for the image load to be successful.
    This may or may not be useful but the following code caused the image load to fail. I tried commenting out the code line by line from the bottom up but the mere presence of the definition caused failure of the image load.
            public void paint(Graphics g) {
                  int iwidth = image.getWidth(null);
                  int frmidd = (il + frwidth - iwidth) / 2;     
                  g.drawImage(image, frmidd , (it + 30), null);
                  g.drawRect(75, 175, 210, 230);
             }

  • IPhoto in 10.6.8 fails to load images

    I have iPhoto on two different hard disk boot disks. They both point to the exact same library on a different disk.
    One disk boots 10.6.8, the other boots in 10.7.4.
    I need both boot versions to retain the ability to use older legacy programs that will no longer work with 10.7.4.
    I keep the iPhoto up to date on both drives, but now the 10.6.8 version will NOT let me see that library, telling me that it was created by a newer version, but no newer version seems to be available on 10.6.8.
    It wants me to create a brand new Library out of everything it contains (mega). You know, for simplicity's sake. &^%$#@!!
    What to do?
    Can I get the two iPhotos to work hand in hand? Or is that a Gotcha that was never explained during an upgrade?

    What version of iPhoto do you have on each version? The OS version does not define the iPhoto version.
    I keep the iPhoto up to date on both drives, but now the 10.6.8 version will NOT let me see that library, telling me that it was created by a newer version, but no newer version seems to be available on 10.6.8.
    Have you ever opened this library with a newer version of iPhoto? If so you were told at the time that it had to be converted adn it would no longer be accessable by th eolder version - you had to choose continue or quit
    Can I get the two iPhotos to work hand in hand? Or is that a Gotcha that was never explained during an upgrade?
    Not if they are different versions - it all depends on the answer to question one
    LN

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Live Bookmark Feed failed to load. I cannot view any footage on BBC News site. Also I can no longer view images I have uploaded to a website. This has all materialised overnight. Please help.

    I have been uploading pictures of booksd to ABE.com for ages. I am able to view these images on the site. Today, without warning, I am unable to do this. Coincidentally, I note that I can no longer view film footage on the BBC news pages. The Latest Headlines column is also showing "Live Bookmark Feed failed to load". Please help.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images permissions.default.images
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    Try to remove the current Latest Headlines feed and create a new feed.<br />
    You can visit http://fxfeeds.mozilla.com/en-US/firefox/headlines.xml

  • When loading large number of images, images begin to fail to load in IE11 with DOM: 7009 error (unable to decode) in console

    When loading many images on a single page in IE (reproduced in IE11), some of them begin to fail to load, and have something similar to the following warning in the console:
    DOM7009: Unable to decode image at URL: '[some unique url]'.
    When I look at the network traffic, there does appear to valid responses received for each of these images from the server. It's not always the same images each time. If I use the dev tools to force the image to reload (example: I update the url to include some some extraneous url parameter "&test=1"), it loads/renders normally without error. I've reproduced this behavior with different types of images (jpegs/pngs; example png included below). Apologies for the cross-posting. I wasn't sure what the particular etiquette was for that - I've also posted this issue on StackOverflow and MS Connect under the same title. If one of those is a more appropriate place for this matter, please let me know and I'll close this issue.

    yup, i have encountered this problem as well. I'm loading an array of image frames for a movie, and i'm using preloadJS (javascript preloading library) and not displaying the images upfront. 

  • Failed to load backgroud images after upgrade to 4.1.1 in Mozilla Firefox

    Hi,
    I have recently upgraded our test APEX environment from 3.2.1 to 4.1.1.00.23. Everything went smoothly - I have only one small but annoying problem. In both administration and administration services some background graphics are not displayed. This issue occurs only under Mozilla Firefox (in MS IE it OK). The application frontend is OK in both browsers.
    Under Firefox, I inspected the sourcecode in Firebug and the relative links to images. e.g.
    background: url("../apex/builder/bg-region-darkblue-r.gif") no-repeat scroll
    show message "Failed to load the given URL".
    I suppose that the issue might be somehow related to the fact that our application is accessed via apache proxy. Because when I open the administration and/or administration services page in FF directly on the server, it displays correctly (incl. images).
    But the network (Apache proxy) configuration is exactly the same as in the previous version of APEX where we had no problem. Something must have changed in the sourcecode of the new version...
    Does anybody know how to tackle such an issue? I'd like to have it solved before upgrading the production environment.
    Thank you.
    Zdenek

    I forgot to mention that we use EPG instead of Apache HTTPD.
    And, of course, I updated images following instructions in http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21673/otn_install.htm#BHAJIGDA
    >
    As you have mentioned earlier
    Because when I open the administration and/or administration services page in FF directly on the server, it displays correctly (incl. images).Which means the images are uploaded correctly in EPG.
    Maybe there is a virtual directory, or some other setup, on you Apache proxy that is still pointing to a folder has does not have the latest images.
    As you have rightly concluded earlier this is most probably something to do with your proxy setup. Not Apex.
    So, check you httpd file.
    Cheers,

  • Images fail to load completely

    I regularly visit a web site which displays many photographs. Often some of the images fail to load completely, I may see the top 30% of the image and the rest shows as a grey box. Pasting the same URL into Firefox, shows the whole image.
    Any ideas? This has been a long term problem with Safari, both on a MBP and PowerBook G4.
    MacBook Pro   Mac OS X (10.4.6)  

    Helpful if you post the web site so we can have a look.

  • Images fail to load into the browser

    Hello,
    Sometimes images fail to load into the browser (they show up as a red "X"). Does anyone know why? Refreshing often loads them correctly, but then a different image will not load (and show a red "X").
    Thanks very much,
    Andy

    Hi Vikas,
    Thank you very much for your help on this. I am now using a faster computer and the problem no longer happens. I did understand your suggestion - I was brainstorming ideas to make changes to APEX to account for slow computers, or computers without enough memory. To somehow guarantee a level of service for APEX applications at the end user's browser. Similar to how Oracle Enterprise manager can help guarantee certain SLAs for J2EE web applications, by monitoring performance from the browser all the way back to the disk. (I'm not sure if it 100% can do this today, but I believe this is the direct it is headed).
    Well, I suppose if everyone uses fast computers this is no longer an issue. But, sometimes fast computers are hard to come by.
    Thanks again for your help,
    Andy

  • Lightroom 5.5 grid view fails to load some images.  These do load in develop, then re-appear in grid.  Re-installed 5.4 (after deleting 5.5, then emptying trash in 10.9.5) and it now exhibits same behavior.  Suggestions?

    These same images fail to load in slideshows; "loading" appears without the image ever appearing.  I can export these grayed-out images and retrieve the image content in the exported file.  Not being able to see all images in grid view is an inconvenience for sure; e.g., I can't review all the contents of a collection before posting it.  This behavior didn't occur until I upgraded to 5.5.  Now it has migrated back into 5.4, despite having selected 5.5 and emptying trash before the re-install.

    Whoa this is happening to me...

  • Error -11003:Menu-Fail loading Image file

    HI:
    addMenus XML File:
    <Application>
      <Menus>
        <action type="add">
          <Menu Checked="0" Enabled="1" FatherUID="43520" Image="title.bmp" Position="14" String="Menus" Type="2" UniqueID="Menus">
            <Menus>
              <action type="add">
                <Menu Checked="0" Enabled="1" FatherUID="Menus" Image="" Position="0" String="Menu_1" Type="1" UniqueID="Menu_1" />
              </action>
            </Menus>
          </Menu>
        </action>
      </Menus>
    </Application>
    when add the Image property , but continue error  Error -11003:Menu-Fail loading Image file.
    <h2>How to add images by using XML inside a B1DE project ?  </h2>
    Hope it helps
    Jimmy.l

    Hi
    在你的xml文件中,image 属性设置错误,应该填写你所加的image的绝对路径
    比如:
    <Application>
    <Menus>
    <action type="add">
    <Menu Checked="0" Enabled="0" FatherUID="43520" String="MyMenu1" Type="2" UniqueID="MyMenu1" Image="C:/MyPic.bmp">
    <Menus>
    <action type="add">
    <Menu Checked="1" Enabled="0" FatherUID="MyMenu1" String="MySub1" Type="1" UniqueID="MySub1" />
    </action>
    </Menus>
    </Menu>
    <Menu Checked="0" Enabled="1" FatherUID="43520" String="MyMenu2" Type="2" UniqueID="MyMenu2" >
    <Menus>
    <action type="add">
    <Menu Checked="0" Enabled="0" Position="0" FatherUID="MyMenu2" String="MySub21" Type="1" UniqueID="MySub21" />
    </action>
    </Menus>
    </Menu>
    </action>
    </Menus>
    </Application>

  • Fbsplash fails to load theme "default"

    I installed fbsplash fbsplash-extras and the them arch-black as well as arch-black-extras from AUR, configured grub and mkinitcpio as well as the splash configuration files per the wiki, so far I've managed to get as far as on reboot I get the message "failed to load theme default" I do not have default set as a theme, and am not sure why this is happening.
    my grub config file:
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet radeon.modeset=1 loglevel=3 console=tty1 splash=silent,theme=arch-black"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    #GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors.  Used by normal and wallpaper
    # modes only.  Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    My mkinitcpio
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run.  Advanced users may wish to specify all system modules
    # in this array.  For instance:
    #     MODULES="piix ide_disk reiserfs"
    MODULES="radeon"
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image.  This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way.  This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options
    # like so:
    #    FILES="/etc/modprobe.d/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file.  The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ##   This setup specifies all modules in the MODULES setting above.
    ##   No raid, lvm2, or encrypted root is needed.
    #    HOOKS="base"
    ##   This setup will autodetect all modules for your system and should
    ##   work as a sane default
    #    HOOKS="base udev autodetect pata scsi sata filesystems"
    ##   This is identical to the above, except the old ide subsystem is
    ##   used for IDE devices instead of the new pata subsystem.
    #    HOOKS="base udev autodetect ide scsi sata filesystems"
    ##   This setup will generate a 'full' image which supports most systems.
    ##   No autodetection is done.
    #    HOOKS="base udev pata scsi sata usb filesystems"
    ##   This setup assembles a pata mdadm array with an encrypted root FS.
    ##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    #    HOOKS="base udev pata mdadm encrypt filesystems"
    ##   This setup loads an lvm2 volume group on a usb device.
    #    HOOKS="base udev usb lvm2 filesystems"
    ##   NOTE: If you have /usr on a separate partition, you MUST include the
    #    usr, fsck and shutdown hooks.
    HOOKS="base udev v86d fbsplash autodetect pata scsi sata filesystems usbinput fsck"
    # COMPRESSION
    # Use this to compress the initramfs image. By default, gzip compression
    # is used. Use 'cat' to create an uncompressed image.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    and my splash config
    # /etc/conf.d/splash
    ####  WARNING!
    ## This file is also sourced in the initcpio hook.
    ## No BASH-code (like arrays) is allowed here!
    ####  initcpio and Fbsplash daemon  ##########################################
    ## Themes to include into initcpio
    ## For a smaller initcpio you may try theme cfg files instead of directories.
    SPLASH_THEMES="
        arch-black
    ## Override the initial silent splash screen status message defaults.
    ## Note: '$progress' will be replaced by Fbsplash itself.
    ## * initcpio - (no effect with fbcondecor kernel)
    #SPLASH_INIT_MESSAGE="Initializing the kernel"
    ## * bootup
    #SPLASH_BOOT_MESSAGE="Booting '$HOSTNAME' (\$progress%)"
    ## * reboot
    #SPLASH_REBOOT_MESSAGE="Rebooting '$HOSTNAME' (\$progress%)"
    ## * shutdown
    #SPLASH_SHUTDOWN_MESSAGE="Shutting down '$HOSTNAME' (\$progress%)"
    ## Include and use the Fbsplash daemon (1.5 MiB) in the initcpio
    ## instead of the small helper only.
    ## Usefull to show animations early.
    ## Note: Themes with 'scripts/rc_init-pre' like 'arch-banner-icons' are
    ##       supported now if fbsplash-extras>=2.0.10 is installed, but there
    ##       might still be some sophisticated ones which break when using this.
    SPLASH_DAEMON="early"
    ## Make the splash daemon use fade effects.
    ## Note: The initcpio helper does only use the kernel parameter!
    # Just use fadein on bootup and fadeout on shutdown/reboot
    case $PREVLEVEL in  N   ) SPLASH_EFFECTS="fadein" ; esac
    case  $RUNLEVEL in [06] ) SPLASH_EFFECTS="fadeout"; esac
    # Uncomment this line to allways use both
    SPLASH_EFFECTS="fadein,fadeout"
    ## Enable the textbox when starting the Fbsplash daemon.
    ## Useful if the theme provides a message log or other textbox.
    ## The scripts write any initscripts [FAIL] messages to the log.
    ## Note: The textbox can also be toggled by pressing F3-key.
    #SPLASH_TEXTBOX="yes"
    ## Splash progress timeout
    ## If set to a positive value, Fbsplash will automatically switch to verbose
    ## mode if there is no progress for the specified number of seconds.
    SPLASH_AUTOVERBOSE=10
    ####  scripts behaviour  #####################################################
    ## Change to verbose mode on any initscripts [FAIL] message
    ## Useful with very simple themes and also when starting Xorg from DAEMONS
    SPLASH_VERBOSE_ON_ERRORS="no"
    ## Name of the DAEMONS script starting Xorg if any
    ## Set this to avoid virtual terminal change struggle between X and Fbsplash.
    #SPLASH_XSERVICE="gdm"
    SPLASH_XSERVICE="kdm"
    #SPLASH_XSERVICE="xdm"
    #SPLASH_XSERVICE="lxdm"
    #SPLASH_XSERVICE="slim"
    ## Push initscripts [BUSY] messages to the splash status message line.
    SPLASH_PUSH_MESSAGES="no"
    # EOF #

    I apologize for that one everyone, BIG noobish mistake that shouldn't have taken me so long to catch, apparently after the parameter in grub for "theme" a colon is required not an equal sign. All is well now, splash works great and looks great.
    Once again I apologize that this even made it onto the forum

Maybe you are looking for

  • Please help. The Finder has crashed I guess, no icons on the desktop, menu bar and dock flicking. Can't open any app, folder or even do a right click.

    Good day, I could really need some information. Thank you in advance. I have a 2008 24" iMac, running on 10.5.8. I want to describe the whole issue. The only thing that changed in my routine and made it crash was that I bought a new Apple keyboard, w

  • Phone line and infinity

    Hi all Please excuse this question as to some it may be glaringly obvious, but I have been interested about Infinity and VDSL on a phone line. Scenario: Customer lives 2km from the exchange. New FTTC cabinet is installed 100m from the customer.  This

  • Mail and iPhoto Problems with sending photos.

    Mail and iPhoto Problems with sending photos. I have this problem that started a while ago and seems to be getting worse. Here are the different scenarios. -If I try to share a photo to email within iPhoto, it will insert the image file name in the m

  • Matrix new line

    Hi everyone, I have a form with a matrix. I would like the matrix to add a line oMatrix.AddRow(1,1); when the user presses tab in the last column. Can anyone help?

  • Regions - Reports (based on sql) - Radio Buttons

    Hi there Trying to do : Selecting an option from Radiogroup, want to see certain report (summary). That report have a column that has a link to another page. RadioGroup : Options View 1 View 2 View1 Column1 (link), Column2, Column3, Column4 View2 Col