Archive for the ‘Linux Theme’ Category

Onux Theme

This is work in progress. It is not done, I still have to make a CSS file for firefox to make things more visible / clear. Depending on which theme is voted into office, feel free to cast your vote there. Comments are welcome.

Cowboy created the default background (this is also subject to change & requires the Ultimate Edition 2.8 to render properly) Onux theme was originally written by bvc, I have modded just the orange (7 in total) and Debianized it. The icon set is from our Lava theme, Magiconed to make it match the themes colors.

Onux Theme Pack Contents:

  • 14 GTK2 Themes
  • 14 Metacity Themes
  • 14 Emerald Themes
  • 19,000+ Icons 16X16, 22, 24, 32, 64, 96, 128 & 256

This theme pack is not currently available on the repository.

 

Ultimate Edition Lava Theme Download:Onux theme (86.69 MB)
Hits: 662 hits
Description:

Possible theme for 2.8 being considered.

 

Un-installation:

Not happy with the theme? It is easy to uninstall:

sudo apt-get remove onux-theme

Ultimate Edition 2.8 Theme

This is work in progress. It is not done, I still have to make a CSS file for firefox to make things more visible / clear.

Cowboy created the default background, many however are involved through out the theme. JohnnyG created the wallpaper used in KVirc. I have used the Icon set from the Lava theme, previously created. The GTK theme is far from done. Some of the other wallpapers were created by Admin-Amir.

Ultimate edition 2.8 Theme Pack Contents:

  • 1 GTK2 Theme
  • 1 Metacity Theme
  • 1 Emerald Theme
  • 19,000+ Icons 16X16, 22, 24, 32, 64, 96, 128 & 256
  • 11 Wallpapers
  • 1 Compiz splash
  • 1 Compiz skydome
  • 1 Screensaver

This theme pack is not currently available on the repository.

 

Ultimate Edition Lava Theme Download:Ultimate Edition 2.8 Theme Pack (116.35 MB)
Hits: 2028 hits
Description:

Theme pack for Ultimate Edition 2.8

 

Un-installation:

Not happy with the theme? It is easy to uninstall:

sudo apt-get remove ultimate-edition-theme-2.8

Ultimate Edition 2.6 Theme

I am thinking of releasing this gem (Ultimate Edition 2.6 Theme), as well as simultaneously releasing all Ultimate Edition themes. Only because I had to rebuild each of them thanks to lucid’s new feature Plymouth and to provide backward compatibility. I have taken a minute or 2 to set up a repository just for themes. Education is coming. I hope you can see where I am going.

I will not say what I am doing; ppl tend to expect the highest of me. Since this site sees the lowest traffic of all, I will tell you because I can, huge things are coming. You can say you read it here first. I wish for 1 sec you sit in my shoes. Last post here a day before xmas last year. Let’s change this up ;)

#This will seem cryptic to most people I add / change portions of this text file based on what I am trying
to accomplish at the time. I am not afraid to search through this text file to find relevant information
of what I want to accomplish. Consider this file a blast of memories of TheeMahn & what I have to change
etc. to accomplish sometimes the same task. Many commands you will find in this text file are very
powerful and are not to be taken lightly. All tasks I preform are now done as “root”, you will not get a
are you sure it just does as asked. I use this method, because I am confident in my skills and do not
want to be bothered by questions such as are you sure? If I wasn’t I would not have asked. We begin…

###############
# Ultimate Edition 2.6 #
###############

#Extract ISO
#Do not Screw around root up
#sudo passwd
su

#grab required tools
apt-get install squashfs-tools lzma lzma-source

#initiate build
modprobe squashfs
#remove old folders if failure on previous build.
rm -R edit
rm -R extract-cd
rm -R mnt
rm -R squashfs

#prepare
mkdir edit
mkdir extract-cd
mkdir mnt
mkdir squashfs

#mount & extract
sudo mount -o loop lucid-desktop-i386.iso mnt
sudo rsync –exclude=/casper/filesystem.squashfs -a mnt/ extract-cd
sudo mount -t squashfs -o loop mnt/casper/filesystem.squashfs squashfs
sudo cp -a squashfs/* edit/

#Copy custom sources or cp /
#Copy custom debs to edit/tmp/

#sources list?
sudo cp edit/etc/apt/sources.list edit/etc/apt/sources.bak
sudo cp /etc/apt/sources.list edit/etc/apt

#optional extra sources (if running a previous build below will suffice) or copy from Ultimate_Edition_2.6/build folder
sudo cp /etc/apt/sources.list.d/* edit/etc/apt/sources.list.d/

#Unmount the ISO
umount /home/theemahn/wip/squashfs/
umount /home/theemahn/wip/mnt/

#Bind dev
mount –bind /dev/ edit/dev

#Chroot in
chroot edit

#Mount Proc etc. Need for many debs to finish installing.
mount -t devpts none /dev/pts
mount -t proc none /proc
mount -t sysfs none /sys

################
## Finally go to work ##
################

#goto folder with custom debs I have written 1.1 gig of just themes as of current
#A special deb I have written to do all my customizations in one blow & another
#that installs all software for me whole distro done in one whack.

apt-get update
apt-get upgrade
cd /tmp
dpkg -i *.deb

#Below command is necessary to make it retrive the packages ultimate-edition-2.6.deb
#attempted to install
apt-get install -f

##Clean up I have thought about automating this step as well in ultimate-edition-customizations.deb
#It already does a ton of things…lazy?
apt-get clean
apt-get autoclean
exit

## copy cd’s custom logs splash / test & config files to /extract
#replace initrd.lz (LZMA Compression is now default Karmic+)…
mkdir initrd
cd initrd
#extract
unlzma -c -S .lz ../extract-cd/casper/initrd.lz | cpio -id
#replace /lib/plymouth & update symlink to point to UE 2.6 Plymouth — Todo add xsplash
#Recompress
find . | cpio –quiet –dereference -o -H newc | lzma -7 > ../initrd.lz
#replace on cd…
cd ..
cp initrd.lz extract-cd/casper/

###################################
#Special commands needed to build new kernel to obtain Plymouth from chroot#
####################################
chroot edit
mount -t devpts none /dev/pts
mount -t proc none /proc
mount -t sysfs none /sys
plymouth-set-default-theme -R Ultimate_Edition_2.6
#replace below numbers with current kernel
mkinitramfs -o /initrd.lz 2.6.32-17-generic
umount /proc
umount /sys
umount /dev/pts
exit
umount /home/theemahn/wip/edit/dev
mv edit/initrd.lz extract-cd/casper/

#Above commands are now depriciated, below setting 250 will make it take over other o/s
#customizations
update-alternatives –install /lib/plymouth/themes/default.plymouth default.plymouth /lib/plymouth/themes/Ultimate_Edition_2.6/Ultimate_Edition_2.6.plymouth 250
#update-alternatives –config default.plymouth #use this command if you wish to change
#change plymouth to another theme always execute the following after the fact.
update-initramfs -u

###################################
# RIP Software no longer currently available for lucid #
###################################

#amarok14 I can get to work pulling a package from debian sid
xbmc amarok14 qt-recordmydesktop screem kqemu-common awn-manager mozilla-mplayer libdvdcss2

#################################
####### Begin Build ##################
#################################

#scrap old sqashfs we are going to build a new one
rm extract-cd/casper/filesystem.squashfs

#build new sqashfs grab some beer, chips & disks are now choked
mksquashfs edit extract-cd/casper/filesystem.squashfs -no-sparse

#manifest
chmod +w extract-cd/casper/filesystem.manifest
chroot edit dpkg-query -W –showformat=’${Package} ${Version}\n’ > extract-cd/casper/filesystem.manifest
cp extract-cd/casper/filesystem.manifest extract-cd/casper/filesystem.manifest-desktop
sed -i ‘/ubiquity/d’ extract-cd/casper/filesystem.manifest-desktop

#calculate crc
cd extract-cd && find . -type f -print0 | xargs -0 md5sum > md5sum.txt

#build final iso – root overwrites ;)
mkisofs -r -V “Ultimate Edition 2.6″ -p TheeMahn -P “Ultimate Edition Team” -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../ultimate-edition-2.6-x86.iso .

#Test
#copy blank Testing.img created with qemulator to wip folder
cd ..
#Testing is a blank Virtual Machine hard disk created with QEmulator.
kvm -m 2047 -smp 4 -usb -boot d -cdrom ultimate-edition-2.6-x86.iso -name Ultimate /media/Storage/Testing64.img

The custom debs I have written to automate the process:

ultimate-edition-customizations-0.3.0_all.deb
ultimate-edition-2.6_all.deb

ultimate-edition-customizations-0.3.0_all.deb does what it says customizes the distro mainly the /etc/skel currently adds compiz fusion to startup and enables it so if you have a compatible video card it will initiate on boot up. It also sets in my compiz settings which are all random so you get to see all the animations. It is quite the piece of work.

ultimate-edition-2.6_all.deb it installs all the software used in Ultimate Edition 2.6. This has squat to do with a theme… The end results, education.



Youtube HQ

Lava Theme

I thought I would toss together a “Hot” theme; have some Lava…

The lava “effect” I created in gimp. The icons I created for the most part; I did have a base of 48 by Fred McKinney which I have turned into overall 19,000+ in gimp and downsized the resolutions in Phatch a powerful tool & a smart author. The GTK uses the "Ubuntu looks" engine is is color changeable.

The Icon pack is the largest Icon pack I have seen ever on the net. It has 491 mimes, this means when you are browsing your files and look at a spreadsheet file the icon will be a spreadsheet. I intend to make the icons the most complete set on the net, if they are not already. Eventually, all icons will be in SVG format to reduce size & add full scalability. Cursor theme is Chrome Glass by fnaax.

Lava Theme Pack Contents:

  • 3 GTK2 Themes (Red, Green & Blue)
  • 3 Metacity Themes (Red, Green & Blue)
  • 3 Emerald Themes Red, Green & Blue)
  • 19,000 Icons 16X16, 22, 24, 32, 64, 96, 128 & 256
  • 2 Wallpapers
  • To ensure you always get the newest version please use our repository.

     

    sudo apt-get install lava-theme-pack

     

    Ultimate Edition Lava Theme Download:Lava Theme Pack (114.43 MB)
    Hits: 2836 hits
    Description:

    3 color lava "Themed" GTK2 / Metacity theme with emerald themes. Includes 19,000+ Icons.

     

    Un-installation:

    Not happy with the theme? It is easy to uninstall:

    sudo apt-get remove lava-theme-pack

Azenis Theme Pack

Azenis Screenshot

Picture 1 of 4

Setting the Gtk / Metacity theme, GDM & Usplash


Azenis is a wonderful theme, made by many people.  And I quote:

What is Azenis I hear you say? Azenis was originally a windowblinds theme created by J.J.Ying, now in its second carnation it has become one of their most prominent themes with almost 200,000 downloads. It has also been ported to KDE by Ezy where it has proved equally successful. I decided to have a go at creating a port for gnome, i got permission from both J.J.Ying and Ezy and this is the result.

Jameshardy88 is now the maintainer. I have taken the time to Debianize it. It will not set the usplash for you. I suggest a tool such as Startupmanager to do so. I will write a tools page for this site time permitting.

Release Name: Azenis Theme Pack
Current Version: 0.0.3; Archive
Filesize: 28.8 MB (30,237,208 bytes)
Architecture: x86 / x64
Codebase: Jaunty+
Contents: 2 Grub splashes, 3 Usplashes (1 x86, 2 x64), 8 Wallpapers, 2 Emerald themes, 3 GDM’s, 1 Font, 5 Icon sets, 6 GTK / Metacity themes, 1 Cursor set and 1 Cairo clock theme.

Downloads: Azenis Theme Pack - , Azenis theme source.

To ensure you always get the newest version please use our repository.

sudo apt-get install azenis-theme-pack

Beautiful Linux Themes

My #1 goal with this site is a one stop & your Linux is gorgeous, not only will Ultimate Edition themes be hosted here, but user contributed.  All released GPL or I will not mess with them.  Simple as that.  My #2 goal is to be #1 for the search terms “Linux themes”, and I do not have any real competition in this department, it will happen.  Sorry if I sound cocky or is it confident?

Newly created / added themes will appear here on the homepage.  If I personally created / used in Ulimate Edition added and perm-linked here, credits will be provided.

Below is just a sample of what can be accomplished with the Nexgen gallery WordPress plugin:

Tags can be added user contribution etc. etc.

Downloads will be provided, not only locally, but in tar.gz format as well as deb as I build them.  No more digging through thousands of pages a one stop and your nix is off the hook.

Nexgen can be used in multiple formats…

xntricity

Picture 1 of 63

This is 2 uses of the “gallery” option, it also has album & photo options.

Please give me the time to make it a reality.  When I am done, err at least have a page up for all Ultimate Edition Themes I will “hot link” it on UE’s homepage and let the fun begin ;)

Comments & suggestions ie a new “killer” theme etc. will be welcome.  I have been looking into a way to make WordPress similar to that of gnomelooks to allow users to submit their own artwork / themes.  Using gnomelook’s system will do nothing, but cost me money with 0 return as they are the ones that place ads on your site & collect the money with you having zero control.  Believe it to be called the hive system.  I would like to at least make some money off ads, is this wrong?  Are they going to pay my hosting bill?

We may not have 55,000 themes here, but we will have the best of the best & the only place that has them in deb format, I wonder who is going to make that happen?  I did not buy this website for nothing ;)

TheeMahn,