Published by Martinus Ady H on September 25th, 2007 in Linux | No Comments
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 :

Below this guide to use this themes :
- Un-compress Tish-Clearlooks-AquaStyle and put in your /home/your_userame/.themes/ directory
- 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.
- 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
- Replace icon with OSX icons. Get OSX icons from here
- 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
Published by Martinus Ady H on September 19th, 2007 in Linux | 4 Comments
Wow… GNOME 2.20 release today and many improvements in this version including :
- Improved support for right-to-left languages
- Desktop search integrated into the file chooser dialog;
- Convenient new features in the Evolution email and calendar client;
- Enhanced browsing of image collections;
- Simplified system preferences;
- 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
Published by Martinus Ady H on September 18th, 2007 in Java, NetBeans | 6 Comments
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
Read More ..
Published by Martinus Ady H on September 18th, 2007 in Linux | 2 Comments
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
Published by Martinus Ady H on September 17th, 2007 in Other | 4 Comments