Are you a spammer

Please note, that the first 3 posts you make, will need to be approved by a forum Administrator or Moderator before they are publicly viewable.
Each application to join this forum is checked at the Stop Forum Spam website. If the email or IP address appears there when checked, you will not be allowed to join this forum.
If you get past this check and post spam on this forum, your posts will be immediately deleted and your account inactivated.You will then be banned and your IP will be submitted to your ISP, notifying them of your spamming. So your spam links will only be seen for an hour or two at most. In other words, don't waste your time and ours.

This forum is for the use and enjoyment of the members and visitors looking to learn about and share information regarding the topics listed. It is not a free-for-all advertising venue. Your time would be better spent pursuing legitimate avenues of promoting your websites.

Ultimate Edition Theme Pack...

Here you will find the official theme, wallpaper, etc. of Ultimate Edition 1.4


Re: Ultimate Edition Theme Pack...

Postby TheeMahn » Tue Sep 23, 2008 7:02 pm

cowboy wrote:Boy did I miss this thread ..installed the Ultimate Edition themes from Ultamatix last night in 1.8 64 bit..ran into a problem on a reboot..back to the key-board not working and also lost the new cursor...this is the message I am getting running the boot in recovery mode...have ran sudo clean and autoremove..still getting this..any thoughts?


Code: Select all
sudo cp /etc/gdm/gdm.conf /etc/gdm/gdm-cdd.conf
sudo dpkg --configure -a


The reason that happened is you do not have a default linked gdm.conf, I will remove it from the deb before release or add a file check routine in preinst.
Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate Edition Theme Pack...

Postby cowboy » Tue Sep 23, 2008 7:05 pm

Oh..OK....tell you the truth? OK now I understand..Googled it :|
Edit:....Thanks TheeMahn worked like a dream
"Back up your Data"
"May I never lose the view of a nubie"
"Give a man a fish, he will eat for a day, teach a man how to fish , he will eat a lifetime"
Asus P8Z68-V PRO/GEN3
i5 2500k
3x4G-Skill Ripjaws
MSI GTX 560Ti Hawk..
Seagate 1TB Barracuda
NZXT 850w PS
CM Storm Sniper Case
Evga Superclock CPU Cooler
Mushkin SSD coming soon
http://acowboydave.blogspot.com/
User avatar
cowboy
U.E. God
U.E. God
 
Posts: 2625
Joined: Mon Oct 15, 2007 2:38 pm
Location: Scottsdale Az
Age: 71
Operating System: Ultimate Edition 3.2 64 BIT



Re: Ultimate Edition Theme Pack...

Postby mgc1952 » Wed Sep 24, 2008 11:09 pm

Thee and all others who contributed - great theme pack and the new 2.0 themes are real nice - love the window borders - once again great work!!

Just got a new laptop and love the 64bit operating system. Played with vista for a week and then did an install of 1.9 64 bit. Very nice, very crisp. Why did toshiba put a 32 bit operating system on a 64 bit machine? profit margin probably

off to some happy computing

thanks again to all involved

Mark
Toshiba L305D-S5881, 2GHZ AMD Turion X2 64, 3MB RAM, 200GB Hardrive, Writeable DVD/CD ROM, ATI Radeon Graphics,15" LCD, Ultimate Edition 2.8 32 bit
User avatar
mgc1952
U.E. Knowledgable
U.E. Knowledgable
 
Posts: 27
Joined: Fri Oct 19, 2007 8:06 pm
Location: North of Boston
Age: 71
Operating System: Ultimate Edition 3.2 64 BIT



Re: Ultimate Edition Theme Pack...

Postby TheeMahn » Thu Sep 25, 2008 6:48 pm

mgc1952 wrote:Thee and all others who contributed - great theme pack and the new 2.0 themes are real nice - love the window borders - once again great work!!

Just got a new laptop and love the 64bit operating system. Played with vista for a week and then did an install of 1.9 64 bit. Very nice, very crisp. Why did toshiba put a 32 bit operating system on a 64 bit machine? profit margin probably

off to some happy computing

thanks again to all involved

Mark

I am sorry I have heavily modified the deb, I will not have errors / problems (as cowboy brought up), I will provide what I have changed... preinst for example:
Code: Select all
#!/bin/sh
#written via TheeMahn
set -e

#Test O/S 64 or 32 bit...
architecture=`uname -m`
targetarch="x86" #Set 64-bit machines to install 32-bit if not detected
if [ "$architecture" != "x86_64" ] && [ "$architecture" != "ia64" ]; then
    architecture="x86"
else
    architecture="x86_64"
fi
if [ "$architecture" = "x86_64" ]; then
echo "Ultimate Edition Themes has detected a 64 Bit O/S."
else
echo "Ultimate Edition Themes has detected a 32 Bit O/S."
fi

#64 bit specific code - Add Usplashes - set Ultimate Edition 2.0 default
if [ "$architecture" = "x86_64" ]; then
case "$1" in
    configure)
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x64/ultimate-edition-2.0-red-x64.so 10
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x64/ultimate-edition-2.0-green-x64.so 10   
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x64/ultimate-edition-2.0-x64.so 10
   update-alternatives --set usplash-artwork.so /usr/lib/usplash/x64/ultimate-edition-2.0-x64.so
   update-initramfs -u
   ;;
esac
#KDE 64 Specifics - not yet implemented (wont show up until at least 2.1)
#make sure there is a folder and copy files based on architecture (prerm will remove them if the user decides to remove this package)...
#mkdir /usrlib/kde3/ 2>/dev/null
#cp -R /usr/lib/x64/kde3/ /usr/lib/
else
#32 Bit code
case "$1" in
    configure)
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x86/ultimate-edition-2.0-red-x86.so 10
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x86/ultimate-edition-2.0-green-x86.so 10   
   update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/x86/ultimate-edition-2.0-x86.so 10
   update-alternatives --set usplash-artwork.so /usr/lib/usplash/x86/ultimate-edition-2.0-x86.so
   update-initramfs -u
   ;;
esac
#KDE x86 Specifics - not implmnted same reason as can be read above
#make sure there is a folder and copy files based on architecture (prerm will remove them if the user decides to remove this package)...
#mkdir /usrlib/kde3/ 2>/dev/null
#cp -R /usr/lib/i386/kde3/ /usr/lib/
fi
#Cusomizations
#change wallpaper
echo "Setting up Ultimate Edition Themes"
gconftool-2 --type "bool" --set "/desktop/gnome/background/draw_background" "true"
gconftool-2 --type "string" --set "/desktop/gnome/background/picture_options" "zoom"
gconftool-2 --type "string" --set "/desktop/gnome/background/picture_filename" "/usr/share/backgrounds/ultimate_edition_2.0.png"
gconftool -t str -s /desktop/gnome/background/picture_filename /usr/share/backgrounds/ultimate_edition_2.0.png
gconftool="gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults "
echo -n "Setting GNOME wallpaper... "
$gconftool --type string --set /desktop/gnome/background/picture_filename /usr/share/backgrounds/ultimate_edition_2.0.png
gconftool -t str -s /desktop/gnome/background/picture_options stretched
echo "done."
#change wallpaper
gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --type string --set /desktop/gnome/background/picture_filename "/usr/share/backgrounds/ultimate-edition_2.0.png"
#Mouse
gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --type string --set /desktop/gnome/peripherals/mouse/cursor_theme "UE-Cursor-Set"
#theme
gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --type string --set /desktop/gnome/interface/gtk_theme "Ultimate_Edition_2.0"
gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --type string --set /apps/metacity/general/theme "Ultimate_Edition_2.0"
#icons
gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --type string --set /desktop/gnome/interface/icon_theme "UE-icon-set-light"

#Mouse
gconftool -t str -s /desktop/gnome/peripherals/mouse/cursor_theme "UE-Cursor-Set"
#theme
gconftool -t str -s /desktop/gnome/interface/gtk_theme "Ultimate_Edition_2.0"
gconftool -t str -s /apps/metacity/general/theme "Ultimate_Edition_2.0"
#icons
gconftool -t str -s /desktop/gnome/interface/icon_theme "UE-icon-set-light"
if [ "$1" = "configure" ]
    then
        gconftool="gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults "
    
        echo -n "Setting GNOME login splash screen... "
        echo "done."
        echo -n "Setting GNOME wallpaper... "
        $gconftool --type string --set /desktop/gnome/background/picture_filename /usr/share/backgrounds/ultimate_edition_2.0.png
        $gconftool --type bool --set /desktop/gnome/background/draw_background true
        $gconftool --type string --set /desktop/gnome/background/color_shading_type solid
        $gconftool --type string --set /desktop/gnome/background/picture_options stretched
        echo "done."
#        echo -n "Setting Panels... " - may eventually add...
#          $gconftool  --load /etc/gconf/schemas/ueschemea.entries
        echo -n "Settings nautilus preference... "
        $gconftool --type string --set /apps/nautilus/preferences/click_policy  single
        $gconftool --type bool --set /desktop/gnome/volume_manager/autorun true
        $gconftool --type string --set /desktop/gnome/volume_manager/autoplay_cda_command "gnome-cd %d"
       echo "done."
        echo -n "Settings other preferences... "
        $gconftool --type string --set /desktop/gnome/url-handlers/http/command "firefox %s"
        $gconftool --type bool --set /desktop/gnome/url-handlers/http/enabled true
        $gconftool --type string --set /desktop/gnome/url-handlers/https/command "firefox %s"
        $gconftool --type bool --set /desktop/gnome/url-handlers/https/enabled true
        $gconftool --type string --set /desktop/gnome/url-handlers/unknown/command "firefox %s"
        $gconftool --type string --set /desktop/gnome/url-handlers/about/command "firefox %s"
        echo "done."
    
fi
echo -n "Setting up GDM Login... "
# GDM Customization
# Set to default theme
if [ -f /etc/gdm/gdm.conf ]
 then
   sed -i "s,^.*GraphicalTheme=.*$,GraphicalTheme=Ultimate_Edition_2.0,g" /etc/gdm/gdm.conf
   sed -i "s,^.*BackgroundColor=#000000.*$,BackgroundColor=#000000,g" /etc/gdm/gdm.conf
   sed -i "s,^.*GraphicalThemedColor=.*$,GraphicalThemedColor=#000000,g" /etc/gdm/gdm.conf
fi
#set if user has a custom gdm configuration
if [ -f /etc/gdm/gdm.conf-custom ]
 then
   sed -i "s,^.*GraphicalTheme=.*$,GraphicalTheme=Ultimate_Edition_2.0,g" /etc/gdm/gdm.conf-custom
   sed -i "s,^.*GraphicalThemedColor=.*$,GraphicalThemedColor=#000000,g" /etc/gdm/gdm.conf-custom
   sed -i "s,^.*BackgroundColor=#000000.*$,BackgroundColor=#000000,g" /etc/gdm/gdm.conf-custom
fi
echo "done."
#grub - make sure it exists we do not want a broken package
echo -n "Setting up Grub splash image... "
if [ -f /boot/grub/menu.lst ]
then
  sed -i "s,^.*splashimage=.*$,splashimage=ultimate-edition-2.0.xpm.gz,g" /boot/grub/menu.lst
fi
echo "done."


It can not error why? It verifies the file exists if not does not exist it does not perform the action, ie changing your GDM login etc. I have also changed the engine, absolutely beautiful for the main theme (complies with intrepid), I had to learn a few things here. It is not ready for public release as it sits, I want it well tested prior. It will be 2.0 not 1.99 - I knew there was a reason I gave myself breathing room (no I am not perfect, many will argue ;).

Current (please note I am in Ultimate Edition 2.0):
Screenshot.png
upgrades flow in daily (it is still in alpha stage) Admins don't even have it yet.


Seems like all I do is:
reboot.png
reboot ;)

hover.png
reboot & hover effects (still gtk)

Yes I have made grub splashes as well 1.99 has 0 2.0 has one for each scheme.

I would also like to note there is no fancy graphics going on here just standard GTK2 / metacity no compiz effects etc (I have written those as well & will be in 2.0 release).

Thanks for the kind comments, you will love the final rest assured.

TheeMahn
Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate Edition Theme Pack...

Postby DaddyX3 » Fri Sep 26, 2008 7:27 pm

Nick wrote:Get this error when trying the 2.0 admin themes :?:

Looks like you have a broken pipe ... better call a plumber ;) ;)
Intel Core 2 Quad Q9300 2.5GHz 45nm/Gigabyte EP35C-DS3R M.B. w/ddr3 1333
G.Skill 2X1GB DDR3 1333MHz/Gigabyte 8800GT PCIe 2.0 512MB GDDR3 OC'd to 700Mhz/ WD160 gig, 2- WD250 gig in RAID-0 (500GB), WD640 gig e-SATA external

AMD 64 X2 3800+/ASUS A8N32-SLI Deluxe/G.Skill 2X1GB Matched Pair ddr400
/EVGA 6800GS Nvidia Graphics 256MB/WD160gig drive

HTPC Box:AMD 64 X2 4400+/ BIOSTAR TF7050PV HDMI MicroATX/G.Skill 2X1GB /Matched Pair DDR800/Integrated video and audio/WD160gig drive
User avatar
DaddyX3
U.E. God
U.E. God
 
Posts: 2407
Joined: Wed Oct 17, 2007 9:22 am
Location: Central Coast - California
Age: 49
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate Edition Theme Pack...

Postby DaddyX3 » Fri Sep 26, 2008 8:04 pm

Yes. Fix the broken pipe :lol:
Honestly, I think it is a prob on the server side- not yours. In other words, Thees mistyped something.
Intel Core 2 Quad Q9300 2.5GHz 45nm/Gigabyte EP35C-DS3R M.B. w/ddr3 1333
G.Skill 2X1GB DDR3 1333MHz/Gigabyte 8800GT PCIe 2.0 512MB GDDR3 OC'd to 700Mhz/ WD160 gig, 2- WD250 gig in RAID-0 (500GB), WD640 gig e-SATA external

AMD 64 X2 3800+/ASUS A8N32-SLI Deluxe/G.Skill 2X1GB Matched Pair ddr400
/EVGA 6800GS Nvidia Graphics 256MB/WD160gig drive

HTPC Box:AMD 64 X2 4400+/ BIOSTAR TF7050PV HDMI MicroATX/G.Skill 2X1GB /Matched Pair DDR800/Integrated video and audio/WD160gig drive
User avatar
DaddyX3
U.E. God
U.E. God
 
Posts: 2407
Joined: Wed Oct 17, 2007 9:22 am
Location: Central Coast - California
Age: 49
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate Edition Theme Pack...

Postby DaddyX3 » Sat Sep 27, 2008 12:08 am

Nice! Everything worked out huh? Just took 3 times to get it to sink in huh? I wonder what the heck happend?
Intel Core 2 Quad Q9300 2.5GHz 45nm/Gigabyte EP35C-DS3R M.B. w/ddr3 1333
G.Skill 2X1GB DDR3 1333MHz/Gigabyte 8800GT PCIe 2.0 512MB GDDR3 OC'd to 700Mhz/ WD160 gig, 2- WD250 gig in RAID-0 (500GB), WD640 gig e-SATA external

AMD 64 X2 3800+/ASUS A8N32-SLI Deluxe/G.Skill 2X1GB Matched Pair ddr400
/EVGA 6800GS Nvidia Graphics 256MB/WD160gig drive

HTPC Box:AMD 64 X2 4400+/ BIOSTAR TF7050PV HDMI MicroATX/G.Skill 2X1GB /Matched Pair DDR800/Integrated video and audio/WD160gig drive
User avatar
DaddyX3
U.E. God
U.E. God
 
Posts: 2407
Joined: Wed Oct 17, 2007 9:22 am
Location: Central Coast - California
Age: 49
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate Edition Theme Pack...

Postby TheeMahn » Sat Sep 27, 2008 2:29 am

You Gents are lucky, I have an answer as do for anything. Please understand one of the admins stopped by the house this eve and is what has called the delay, guess what maddog will be here to critique my work as you gent's claim you have not seen (or watched fail)... One thing I can count on is his attention to detail if a flaw exists he will find it. I can tell you why it failed (in your dept), did you install "Aurora" Engine? Perhaps from gnome look? It does not exist in Ubuntus's repo, this includes Interpids...

The reason for the failure? I left the writer of the Engine's "Aurora" /usr/share/docs/... credits, I could go on deb's do not like to over write a file even a text file. I assure you if I was to remove his credits all would go smooth, is that what I want? I grant you in the "control" file I could replace "aurora", but does he not deserve the credit? I will drop it so all understand:
Code: Select all
Package: ultimate-edition-theme-2.0
Priority: optional
Replaces: ultimate-edition-themes
Section: x11
Architecture: all
Depends:libc6 (>= 2.5-0ubuntu1), initramfs-tools (>= 0.40ubuntu30), usplash (>= 0.4-21), gconf2 (>= 2.20)
Version: 2.0
Maintainer: TheeMahn <[email protected]>
Installed-Size: 125800000
Description: Ultimate Edition 2.0 Theme Pack
 Entire theme pack of what Ultimate Edition 2.0 will look like (subject to change) in 3 colors... standard default (black & blue), red, and green theme this theme pack includes everything from the bottom up in a convenient deb package (grub splashes, usplashes, GDM Logins, GTK / metacity themes, wallpapers, emerald themes, Ultimate Edition cursor set & Icon set). 
 .
 For information please visit http://forumubuntusoftware.info/.



How about I change replaces to Aurora? I replace only what I write. Should I write / make a deb howto? You are lucky I did not hit submit when I had what I had... The only thing I had to say positive and will continue to do so is Nick does not deserve to be green, he is red... Please feel free to post in admin section. Debunct me if u gents feel so, just make sure cab knows first ;)

I apologize , I am mad; I know what I can do, should I write the engine too? I am going to step out on a limb... Ubuntus themes as well as mine comply with what they have in store for "our" future. It may seem like like I am being an ass, but have learned more then I would bet anyone would like to learn, when it comes to what I posted (let alone what I truly understand).

TheeMahn
Home of Ultimate Edition. Got a question? Please review the F.A.Q. Browse the How to section.

Main O/S: Builder of O/S Guess.
Mainboard: ASUS Hero VI (AM4)
CPU: AMD 1700X water cooled (Deepcool Captain Genome Cooling tower)
Ram: 16 GB GSkill Trident RGB Series Dual Channel DDR4 3200
Video: MSI RX470 8GB Gaming card.
Hard Disks: MASSIVE on the network.(10 Gigabit, 48 port, multiple servers)
Monitors: Dual 4K 43" LG, 4K Samsung 28"
750 Watt modular PSU (Rosswell)
1100 Watt Amp & 4 X 600 Watt speakers

Servers in the basement.
User avatar
TheeMahn
Site Admin
 
Posts: 4201
Joined: Fri Oct 12, 2007 10:02 am
Location: U.S.A.
Age: 53
Operating System: Ultimate Edition Developer



Re: Ultimate Edition Theme Pack...

Postby DaddyX3 » Sat Sep 27, 2008 10:37 am

Where's Cab? I think Nick should have been red a while ago.
Intel Core 2 Quad Q9300 2.5GHz 45nm/Gigabyte EP35C-DS3R M.B. w/ddr3 1333
G.Skill 2X1GB DDR3 1333MHz/Gigabyte 8800GT PCIe 2.0 512MB GDDR3 OC'd to 700Mhz/ WD160 gig, 2- WD250 gig in RAID-0 (500GB), WD640 gig e-SATA external

AMD 64 X2 3800+/ASUS A8N32-SLI Deluxe/G.Skill 2X1GB Matched Pair ddr400
/EVGA 6800GS Nvidia Graphics 256MB/WD160gig drive

HTPC Box:AMD 64 X2 4400+/ BIOSTAR TF7050PV HDMI MicroATX/G.Skill 2X1GB /Matched Pair DDR800/Integrated video and audio/WD160gig drive
User avatar
DaddyX3
U.E. God
U.E. God
 
Posts: 2407
Joined: Wed Oct 17, 2007 9:22 am
Location: Central Coast - California
Age: 49
Operating System: Ultimate Edition 2.3 32 BIT



Re: Ultimate Edition Theme Pack...

Postby cowboy » Sat Sep 27, 2008 8:14 pm

Yep, Nick...red suit's you fine, you bounce around here alot.... :)
"Back up your Data"
"May I never lose the view of a nubie"
"Give a man a fish, he will eat for a day, teach a man how to fish , he will eat a lifetime"
Asus P8Z68-V PRO/GEN3
i5 2500k
3x4G-Skill Ripjaws
MSI GTX 560Ti Hawk..
Seagate 1TB Barracuda
NZXT 850w PS
CM Storm Sniper Case
Evga Superclock CPU Cooler
Mushkin SSD coming soon
http://acowboydave.blogspot.com/
User avatar
cowboy
U.E. God
U.E. God
 
Posts: 2625
Joined: Mon Oct 15, 2007 2:38 pm
Location: Scottsdale Az
Age: 71
Operating System: Ultimate Edition 3.2 64 BIT

PreviousNext

Return to Official U.E. Themes

Who is online

Users browsing this forum: No registered users and 2 guests