The "simplyblack" Grub splash image (gfx)

For those wanting to keep that black KDEmod/SimplyBlack theme going from start to finish, I took out my Gimp hacksaw and made a Grub splash image .... enjoy.
Download Link:  http://satelliteoflove.homelinux.com/ar … gts.xpm.gz
============================
Woooops ... please move this thread to Artwork!
Last edited by georgia_tech_swagger (2008-07-08 09:43:50)

FYI:  This and some other grub gfx themes are now in a package I have pushed to AUR:   grub-gfx-themes

Similar Messages

  • Grub splash image

    I am using an Arch Linux system with legacy grub. I have configured a boot time splash image which appears when the grub menu comes up when booting but disappears when a selection is made and the OS starts to boot. How can I keep the splash image always on at boot time?
    Appreciate any pointers and thanks in advance.
    EDIT: Also, I use the "quiet splash loglevel=2" kernel options but I see messages on the console "Starting .... [DONE]" How can I mute these messages?

    Thanks. I am installing fbsplash. Meanwhile I have tried to configure plymouth without success. I get the error pasted below when I run mkinitcpio - p kernel26 after installing plymouth (0.8.3) and changing 'HOOKS' line in /etc/mkinitcpio.conf to include 'plymouth'.
    I am on a legacy system which is running 2.6.31-ARCH. I can't upgrade it as there is other proprietary software which will have to be fine tuned.
    Appreciate any help/pointers.
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    FATAL: Hook 'plymouth' can not be found.
    ==> FAIL
    EDIT: same error with fbsplash as well -
    sudo mkinitcpio -p kernel26
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -k 2.6.31-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    FATAL: Hook 'fbsplash' can not be found.
    ==> FAIL
    Last edited by supportnti (2011-09-17 05:58:02)

  • What happened to OpenOffice splash image ?

    I've created an OpenOffice splash image and it was elected to be the distro splash... As far as I can see, Arch is using the default OpenOffice splash image.. Is there a reason for this change ?

    MartinZ wrote:Yeah, i also miss the Arch-splash screen. I understand that too much customization may difficult maintenance, but we also need some personality... i mean, the kernel has an arch logo, kde menu and so on. So everyone that watches our computer knows we're running Arch and not just a random distribution. Anyway, it would be nice to have the OOo arch splash screen back.
    I will be putting together artwork-related packages over the next couple of weeks.  I will include an OOo splash package that contains the logo mentioned above--it will be optional (e.g. not included with the default OOo package.)

  • Can't Get Grub2 To Show Splash Images

    I have grub2 installed on i686
    And this is what I have so far;
    grub.cfg
    # Config file for GRUB2 - The GNU GRand Unified Bootloader
    # /boot/grub/grub.cfg
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/sda (hd0)
    # /dev/sdb2 (hd1,2)
    # /dev/sda3 (hd0,3)
    # Timeout for menu
    set timeout=5
    # Set default boot entry as Entry 0
    set default=0
    # (0) Arch Linux
    menuentry "Arch Linux" {
    set root=(hd0,3)
    linux /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /kernel26.img
    # (1) Arch Linux
    menuentry "Arch Linux 2.6.36.1" {
    set root=(hd0,3)
    linux /boot/vmlinuz-2.6.36.1 root=/dev/sda3 ro
    initrd /boot/kernel-2.6.36.1-ARCH.img
    # (2) Arch Linux
    menuentry "Arch Linux Fallback" {
    set root=(hd0,3)
    linux /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /boot/kernel26-fallback.img
    ## (1) Windows
    menuentry "Windows" {
    set root=(hd0,0)
    chainloader +1
    /etc/default/grub
    # If you change this file, run 'update-grub' afterwards to update
    # /boot/grub/grub.cfg.
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=15
    GRUB_DISTRIBUTOR="Arch Linux"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX=""
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL=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=1024x768x24
    # 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_LINUX_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="/boot/grub/arch.png"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    /etc/grub.d/40_custom
    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    if loadfont /usr/share/grub/unicode.pf2 ; then
    set gfxmode="800x600x24"
    insmod gfxterm
    insmod vbe
    terminal_output gfxterm
    if terminal_output gfxterm; then true ; else
    terminal gfxterm
    fi
    fi
    insmod tga
    background_image /boot/grub/arch.tga
    Before I wasn't using anything in /etc/grub.d/40_custom and just editing the /etc/default/grub but nothing is working I can'tget an image to show up. Any help getting this thing would really be appreciated.
    THANKS
    Last edited by DasFox (2010-11-25 07:45:42)

    naguz wrote:
    Well, then you most likely  ditched it because you made a mistake.
    grub-mkconfig -o /boot/grub/grub.cf is supposed to write a completely new grub.cfg based on the scripts and /etc/default/grub file. So of course anything you had edited in the grub.cfg directly got lost when you did that. It din't screw it up, it replaced the file like it should.
    If the result didn't work, then something was probably wrong somewhere else in your config files.
    I know how to use Grub I've been using Grub for as long as it's been around and I've also used Grub2 just fine on other distros without a problem.
    I didn't screw anything up and I left the config file alone also and edited it in the /etc/grub path I believe it is, like you are suppose to...
    The simple truth is there was a problem with UUID, so I tried to disable that also in the config;
    GRUB_DISABLE_LINUX_UUID=true
    But this didn't work and it just had a bug I didn't feel like dealing with so I dumped it, anyhow like I said I'm using legacy just fine...
    Don't assume next time that something is wrong, people are screwing things up...
    P.S. Let the post rest it's over and I'm using Legacy so no need to revive it...

  • Splash image not working in JNLP

    Hi all...
    Splash image is not get displayed in my Application..
    Here is my JNLP file.
    <jnlp spec="6.0+" codebase="http://localhost:8080/MyProject/">
      <information>
        <title>MyProject1.0</title>
        <vendor>My Company.</vendor>
        <homepage href="null"/>
        <description>Application Launcher For MyProject1.0</description>
        <icon href="http://localhost:8080/MyProject/images/Splash_MyProject.jpg" height="300" width="560" kind="splash"/>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <update check="timeout" policy="always"/>
      <resources>
        <java version="1.6"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/mysql-connector-java-5.0.6-bin.jar" download="eager" main="false"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/MyProject1.0.jar" download="eager" main="true"/>
        <jar href="http://localhost:8080/MyProject/SwingApplication/liquidlnf.jar" download="eager" main="false"/>
      </resources>
      <application-desc main-class="com.mycompany.ui.MainWindow">
        <argument>production%0%3#com.mysql.jdbc.Driver#MyProject4%jdbc:mysql://10.100.1.89:3306/MyProject4%MyProject%info123#MyProject2%jdbc:mysql://10.100.1.89:3306/MyProject2%MyProject%info123</argument>
      </application-desc>
    </jnlp>Splash image not get displayed and then I change *<java version="1.6"/>* to *<java java-vm-args="-splash:resource/images/Splash_MyProject.jpg" version="1.6"/>*
    still splash image not get shown on application startup..
    no java.awt.SplashScreen() class instance found.
    Plz anybody give some idea...

    I have also a problem with the splash screen not displaying. This is the first relevant portion of the jnlp:
    <jnlp spec="1.5+" codebase="http://www.i-modulas.nl/downloads/"
    href="imodulas.jnlp">
    <information>
    <title>i-Modulas Thin Client</title>
    <vendor>i-Modulas Software BV</vendor>
    <icon kind="splash" href="http://www.i-modulas.nl/downloads/javathinsplash.jpg"/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="isrun.jar"/>
    <property name="iscobol.conf" value="http://www.i-modulas.nl/downloads/javaclientproperties.txt"/>
    </resources>
    <resources os="Windows">
    <property name="swing.defaultlaf" value="com.sun.java.swing.plaf.windows.WindowsLookAndFeel" />
    </resources>
    <resources os="Linux">
    <property name="swing.defaultlaf" value="com.sun.java.swing.plaf.gtk.GTKLookAndFeel" />
    </resources>
    The application starts normal and uses a different look and feel under Windows as under Linux, but I do not see the splash screen. I tried different ways of referencing to the picture and I also tried using a .gif format. It never worked!
    Any suggestions are welcome!
    Ren�

  • Splash image flickering

    Hello
    I have create a program that start with a splash image defined in the manifest.mf file with the statement SplashScreen-Image: data/images/splash.jpg.
    When i run the program with jre 1.6.0 I see an undesidered flickering of the splash image.Can anyone help me?
    thanks

    what is the advantage of the native splash over
    making one yourself? The spash screen comes up before the JVM and as the app is loading.
    I guess its just there to pacify people who think the JVM and App Startup
    is too slow. I know people at my job have actually said to me when
    running a Java app "why does it load sooo much slower than a VB
    app?" when in actuality it came up in an eye blink.
    I guess VB apps load in half an eye blink, lol.
    Do you have any code that manipulates the java.awt.SplashScreenI thought that because the SS comes up before the JVM (or concurrently
    or whatever) that you couldnt control it?

  • In this apk included ALL DW Folder files incluing images (eg splash images) for iOS - non needed act

    Following David Powers videos or books, instaling phonegap in dreamweaver site... well, config.xml references many splash screen image files for many platforms, well when build eg a specific binary (when upload with dw cs6 to phonegap) eg apk in this apk included ALL DW Folder files incluing images (eg splash images) for iOS - non needed actually for apk (android)?

    I am sorry to have to point out to you that you have changed SpryMenuBasicSkin.css so much that it is impossible to render any assistance.
    To start with, the menubar has an ID of MenuBar, yet in the CSS I only see this referenced as a CLASS as in
    .MenuBar  {
    background-color:#cccccc;
    font-family: Arial, Helvetica, sans-serif; /* Specify fonts on on MenuBar and subMenu MenuItemContainer, so MenuItemContainer,
    MenuItem, and MenuItemLabel
    at a given level all use same definition for ems.
    Note that this means the size is also inherited to child submenus,
    so use caution in using relative sizes other than
    100% on submenu fonts. */
    font-weight: normal;
    font-size: 16px;
    font-style: normal;
    padding:0;
    border-color: #ffffff #ffffff #ffffff #ffffff;
    border-width:0px;
    border-style: none none none none;
    I would suggest to start again.
    Once you have done that, supply a link to your site and we will assist you further.
    Gramps

  • Flex Mobile Splash Image

    Hello,
    Is there a way to increase the visual quality of the splash image? Or set size?
    How about adding text in adition to the image, like "Loading..."?
    Thank you.

    Good idea, thanks.
    However, I did this differently.
    I was having problems with quality even with scaling set to none, the image would get jagged edges etc.
    I tried vector formats, but neither FXG or SVG are allowed in 4.5.1.
    Luckily, SWF is allowed and I imported the vector graphics to in and it worked.
    The SWF can contain no AS or rather any AS in the SWF file will be ignored, but it does work.
    And as a bonus, the SWF filesize is 2x smaller than the GIF I was using (now that I think about it, the scaling might have worked better on JPG or PNG files).

  • Change splash image at HTML GUI

    Hello
    How can i change the splash image that its shown calling transaction from enterprise portal??
    The url for the image is http://xxxxxx.xxxx.xx:8000/sap/public/icmandir/its/lsgui/images/img/splashscreen.jpg
    Thanks.

    Hi Julio,
    This change is not supported by SAP, recommendation is to use ~nosplash.
    The splashscreen source code can be found here: go to SE80: Internet
    Service -> System -> Topic SL -> Mime Objects -> Page ->
    splashscreen.html
    Image itself: Goto SE80: Internet Service -> System -> Topic SL
    -> Mime Objects -> Image -> splashscreen.jpg
    Regards,
    Oisin

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Error message "This program cannot display the webpage when uploading images to Cafe Press

    I have had a Café Press shop for five years and except for sometimes being slow, no problems uploading images. Now, suddenly for 3 days I get the message "This program cannot display the webpage
    Most likely causes:
    • You are not connected to the Internet.
    • The website is encountering problems.
    • There might be a typing error in the address.
    What you can try:
    Check your Internet connection. Try visiting another website to make sure you are connected.
    Retype the address."
    I got the messsage about half way through the uploading of an image. People suggested using "firefox" instead of IE so I now get a similar error message from Firefox. I signed in, clicked on the image I wanted to upload and hit "upload" and get message as follows:
    Server not found
    Firefox can't find the server at members.cafepress.com.
    * Check the address for typing errors such as
    ww.example.com instead of
    [url=http://www.example.com]www.example.com[/url]
    * If you are unable to load any pages, check your computer's network connection.
    * If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.
    None of this makes sense because I WAS connected to the internet (obviously) or I wouldn't have been able to sign in, go to my media basket, browse for the image and click "upload" and watch as the progress bar showed percentage of upload such as 20%, etc. and even went to 100% at times before giving me the error message. Plus I couldn't make a typing error since I wasn't typing anything but uploading an image. Any suggestions?
    Whatever your suggestion, I need step by step instructions as I am totally computer illiterate. I don't even know what a "proxy" is and don't know if I have a "firewall" as the message suggests. I have "Comodo" security and am using Windows XP.
    I contacted CP which was no help at all. All they did was tell me to clear my cache which I do after every session. Thanks
    Nancy
    http://www.cafepress.com/calendarflr

    Sounds like your desktop application is in fact running from
    a server. CHMs were identified as a security risk by Microsoft and
    are best suited to the user's PC.
    Click
    here for more information.

  • [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)

    Dear Experts,
    i am getting the below error when i was giving * (Star) to view all the items in DB
    [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)
    As i was searching individually it is working fine
    can any one help me how to find this..
    Regards,
    Meghanath.S

    Dear Nithi Anandham,
    i am not having any query while finding all the items in item master data i am giving find mode and in item code i was trying to type *(Star) and enter while typing enter the above issue i was facing..
    Regards,
    Meghanath

  • Error in SQL Query The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query

    hi Experts,
    while running SQL Query i am getting an error as
    The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    T2.LineText
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,T2.LineText
    how to resolve the issue

    Dear Meghanath,
    Please use the following query, Hope your purpose will serve.
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    CAST(T2.LineText as nvarchar (MAX))[LineText]
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry LEFT OUTER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry --where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,CAST(T2.LineText as nvarchar (MAX))
    Regards,
    Amit

  • How to change the default JAD Icon image in JStudio

    Dear friends,
    I have one dought,how to change the default icon JAD image in jstudio application.Its very important to me.And one find answer please tell .

    Dear friends,
    I developed one application in jstudio.And need to set an special icon for my application.While i download my application in to mobile. The icon should be displayed in the mobile.To show my application as unique from other applications.But i dont know how to set an icon for my application. If any one find answer please reply as soon as possible.
    Thank you

  • How can I find out the dpi of an image in Acrobat.

    How can I find out the dpi of an image in Acrobat. I have tried the pre-flight option but I really don't understand the pixels width x depth information that I get. I basically just want to know at dpi of a single image. Is there other program that will read my pdf file and tell me this information.

    Thank you, tylerdurdain! That was ridiculously difficult to find. Not sure what version of Acrobat you're using in your image, but for those using Acrobat Pro 11 (in Mavericks), it's buried under View > Tools > Print Production.
    That opens a panel on the right.
    To keep from having to chase it down this way each time, right click on "Output Preview" and choose "Add to Quick Tools Toolbar". That adds a button to the top right of the toolbar.
    Now you can call up the inspector with one click. Choose Object Inspector as tylerdurdain shows above, then click on the item displayed to get its properties.

Maybe you are looking for

  • UAR work flow not work

    Dear Experts,          For the process User access review, I had done following configaration: 1)Upload all neccessary .xml file into CUP, 2) Create workflow initiator, stage and path 3) I use Admin review process in option panel the problem is after

  • Scrollbar in a tab region

    How to display scroll bar in a tab region? I have a portlet in a tab region that has got lot of contents. Is it possible to display scrollbar just for this region so that I can still see the tab?

  • IDVD crashed and left its files somewhere

    Hello all, I was doing a 1-step DVD off my digital video cam today, and there was a jam in the processing, so I had to force-quit the application. The problem now is that the imported video is somewhere on my hard drive - and I have to get it off and

  • Photos & Camera / Photo Library Storage Bug?

    I have 3.3 GB of phantom photos and videos in my Photos App. I have removed all photos and videos from my iPhone. Settings > General > Usage > Storage / Manage Storage > Photos & Camera still reports 3.3 GB of storage is being used. I have made sure

  • Date passing into db !

    hi, i need to pass date object into mysql. so, please tell me i have to take date as normal date object or sql date object. please help me !!!!!!!!!