Archive for September, 2007

Install Nimbus GTK Themes Di Slackware 10.1

Wednesday, September 26th, 2007

Hmm… gara-gara ngebet banget pingin cobain Open Solaris 10 dan ndak keturutan (iks… soalnya RAM saya kurang, cuman 256 MB doank), akhirnya iseng-iseng cobain install themes Open Solaris yang baru yaitu Nimbus :) di Slackware 10.1 saya :) Kan lumayan, misalkan bisa ngebikin tampilan GNU/Linux Slackware saya bisa jadi kek Open Solaris :) , jadi ndak usah susah-susah upgrade RAM karena cuman pingin cobain Open Solaris malu (Kalau linux ajah bisa, kenapa tidak ? :D “Ga ada rotan, akar pun jadi” )

Ini ada deskripsi apa itu Nimbus sebenarnya :

Nimbus is the name of a look-and-feel designed by Sun for the Java Desktop System; it’s implemented as a GTK theme in the latest Solaris 11 pre-release builds.
Note: read more here

Oh iya, ini spesifikasi Slackware Linux yang saya pakai sehari-hari :
- OS Slackware Linux 10.1
- Kernel 2.6.10 ( ambil dari binary cd slackware)
- GNOME versi 2.12 ( GSB/Free Rock GNOME )

Downloadlah dahulu package-package dibawah ini sebelum mulai instalasi, alat-alat yang perlu dipersiapkan yaitu :
Packages Dependencies :
- XML-Simple-2.18.tar.gz
- icon-naming-utils-0.8.6.tar.gz

Package Utama :
- nimbus_0.0.6-1.diff.gz
- nimbus-0.0.8.tar.bz2
- sun-gdm-themes-0.25.tar.gz
- opensolaris-backgrounds-0.2.tar.bz2

Paket-paket diatas sudah saya coba di Slackware 10.1 dan jalan dengan sukses, untuk distribusi Linux yang lain, mungkin ada sedikit perbedaan :) . Jika distro yang anda pakai adalah Debian, Ubuntu dan Gentoo, bergembira-lah soalnya sudah ada yang buat package untuk ke 2 distribusi Linux tersebut. :)

Package Untuk Debian dan Ubuntu bisa diambil dari sini :
- Nimbus For Debian and Ubuntu

Package Untuk Gentoo bisa diambil dari sini :
- Nimbus For Gentoo e-build

(more…)

Uploading My Tish-Clearlooks-AquaStyle to gnome-looks

Tuesday, September 25th, 2007

Yeah, it is my first GTK+ themes for GNOME :) And i added this to GNOME-Looks to share my modified themes with other GNOME lover’s :) . And this is the screenshot of my Tish-Clearlooks-AquaStyle :

GConf Nautilus

Below this guide to use this themes :

  1. Un-compress Tish-Clearlooks-AquaStyle and put in your /home/your_userame/.themes/ directory
  2. Right Click onto the top panel, and chose properties. In Panel Properties, choose advanced tab and select the background image then browse trough Tish-Clearlooks-AquaStyle directory and find panelAtas.png.
  3. Change your button layout from GConf editor and go to /apps/metacity/general, right click the button layout and edit the value for menu to look like this : close,minimize,maximize:menu
  4. Replace icon with OSX icons. Get OSX icons from here
  5. The other alternative instead of editing looks from the gconf editor, you can uncompress gconf.tar.bz and replace your /usr/share/pixmaps/gconf-editor directory.

Look other gnome lovers say about this themes ?? You can go here.

Download this themes :
Tish-Clearlooks-AquaStyle Themes (134 kb)
GConf-Editor Themes (4 kb)

I hope you enjoy using this themes :-)

GNOME 2.20 Release

Wednesday, September 19th, 2007

Wow… GNOME 2.20 release today and many improvements in this version including :

  1. Improved support for right-to-left languages
  2. Desktop search integrated into the file chooser dialog;
  3. Convenient new features in the Evolution email and calendar client;
  4. Enhanced browsing of image collections;
  5. Simplified system preferences;
  6. Efficient power management and incredibly accurate laptop battery monitoring.

Humm.. i can’t wait, when Free Rock GNOME or Dropline GNOME make this version available for Slackware :( And If you wanna to read more info or look screenshot of GNOME 2.20, please read this GNOME 2.20 Release notes :)

Download File nbm

Tuesday, September 18th, 2007

Beberapa hari yang lalu, saya secara tidak sengaja membaca tutorial tentang bagaimana cara menggunakan Java Web Start dengan NetBeans IDE :) Setelah baca-baca sampai habis, akhirnya timbul keinginan buat mempraktekkan nanti dirumah apalagi kalau bisa membikin tutorial yang contohnya memakai Java Web Start kayaknya lebih asyik lagi :)

Akhirnya saya simpan saja halaman tutorial tersebut dengan cara “Save Page As”, setelah yakin halaman tutorial tersimpan dengan baik, sekarang gantian waktunya untuk mencari “bahan-bahan” yang diperlukan untuk menggunakan Java Web Start di Netbeans IDE salah satunya yaitu module Java Web Start.

Karena dirumah tidak mempunyai koneksi internet sama sekali sedangkan pada tutorial tersebut hanya ditunjukkan cara Update Module secara online saja :( , maka saya coba mencari di Netbeans Plugin Portal supaya bisa saya download kemudian saya instal secara offline. Setelah mencari-cari beberapa saat, ternyata di Netbeans Plugin Portal tidak ada module Java Web Start nya :( (more…)

Install Themes Firefox Secara Offline

Tuesday, September 18th, 2007

Pingin tahu gimana cara install themes firefox secara offline ?? Ini ada artikel disini, yang memberitahu caranya :)
Ternyata sangat mudah sekali, tinggal copy paste kode dibawah ini kemudian simpan dengan ekstensi *.html

 
<script type="text/javascript">
function installTheme(where) {
var file = '';
if (where == 'local') {
file = 'file:///' + escape(document.getElementById('filename').value.replace(/\/g,'/'));
} else {
file = document.getElementById('url').value;
}
InstallTrigger.installChrome(InstallTrigger.SKIN, file, getName(file));
}
function getName(raw) {
var grabFileStart = raw.lastIndexOf('/');
var grabFileEnd = raw.lastIndexOf('.');
if (grabFileStart >= grabFileEnd) {
return 'Invalid file name';
} else {
return raw.substring(grabFileStart + 1,grabFileEnd);
}
}
function installThemeNow(file) {
InstallTrigger.installChrome(InstallTrigger.SKIN, file, getName(file));
return true;
}
</script>
<table align="center" bgcolor="#a52a2a" border="0" cellpadding="0" cellspacing="2" width="80%">
<tbody>
<tr>
<td bgcolor="#f5f4ed">
<p align="center"><span class="style2">Install Firefox .JAR theme from Harddisk
 
</span>
<form>
<input id="filename" type="file" />
<input value="Install" onclick="installTheme('local');" type="button" /></form></td>
</tr>
</tbody></table>

Setelah disimpan, buka pakai firefox kemudian ambil themes yang ingin diinstal dengan cara klik tombol browse setelah itu tekan instal. Ing..eng.. themes firefox sudah terinstal :)