test LINK: (link works) Problem with text... Eyecandy For Your Gnome Desktop ---trying one line at a time--- Running Linux Mint 14 Cinnamon, I wanted to customize my login a little more. Eyecandy For Your Gnome Desktop Running Linux Mint 14 Cinnamon, I wanted to customize my login a little more. Login Themes:
Eyecandy For Your Gnome Desktop Running Linux Mint 14 Cinnamon, I wanted to customize my login a little more. Login Themes: PROBLEM LINE HERE How I install the login theme: There's more than one way to do this. First, I click on the link at the Gnome site I linked above and download with the browser: My saved directory is 'Downloads', so that's where I will go to get the tar.gz. I am going to also navigate to Menu/Administration/Login Window to open the theme panel: Once that is ready, I can either click 'ADD' from the panel, or I can simply drag and drop the tar.gz package onto the theme panel, which is what I chose to do here: Now, you can test out your new theme by selecting it in your theme panel and logging out (or switching users). Finally, an optional step is to delete the tar.gz theme package you downloaded from your download directory. Enjoy!
Testing one word at a time to find problem, skipping common text and focusing on less used words: You can download these in your ***, or obtain the link and paste it into your *** with the '***' command if you prefer. At least one of these themes doesn't work; it appears to be empty or *** (login-scan-fusion theme).
Test: command corrupt Cpanel Downloads Firefox browser WGET New thread, found reason for error: Eyecandy For Your Gnome Desktop
Test code: Code: <? who's your daddy?> Code: will not allow linux code in this mode PHP: <? phpvar test in php>? HTML: <APPLET CODE="MyApplet.class" WIDTH=200 HEIGHT=50> <PARAM NAME=TEXT VALUE="yo dude"> <P>Yo Dude!<P> </APPLET> tried CODE, PHP and HTML. No luck with Linux commands. Still get error.
Code: #!/bin/bash #### Script Created By SociallyUncensored.eu #### #i386 links link1="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-headers-3.6.0-030600_3.6.0-030600.201209302035_all.deb" link2="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-headers-3.6.0-030600-generic_3.6.0-030600.201209302035_i386.deb" link3="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-image-3.6.0-030600-generic_3.6.0-030600.201209302035_i386.deb" link4="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-image-extra-3.6.0-030600-generic_3.6.0-030600.201209302035_i386.deb" #amd64 links url1="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-headers-3.6.0-030600-generic_3.6.0-030600.201209302035_amd64.deb" url2="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-image-3.6.0-030600-generic_3.6.0-030600.201209302035_amd64.deb" url3="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.6-quantal/linux-image-extra-3.6.0-030600-generic_3.6.0-030600.201209302035_amd64.deb" #System architecture arch=`uname -m` if [ $arch = i686 ] || [ $arch = i386 ]; then mkdir $HOME/kernel3.6-i386 sudo rm -rf $HOME/kernel3.6-i386/* cd $HOME/kernel3.6-i386 wget $link1 wget $link2 wget $link3 wget $link4 sudo dpkg -i *.deb sudo rm -rf $HOME/kernel3.6-i386 elif [ $arch = "x86_64" ]; then mkdir $HOME/kernel3.6-amd64 sudo rm -rf $HOME/kernel3.6-amd64/* cd $HOME/kernel3.6-amd64 wget $link1 wget $url1 wget $url2 wget $url3 sudo dpkg -i *.deb sudo rm -rf $HOME/kernel3.6-amd64 else echo "Unsupported Architecture" fi