


Conky by hardball 59 comments

Conky by pingsuters 60 comments

Full Icon Themes by juandejesuss 1742 comments
The steps are very easy, you need 7zip installed:
1) rename THEME.msstyle into THEME.7z
2) extract
Then you can read the infos in the main file and use the background images as you wish.
;) - Nov 10 2010

Full Icon Themes by 4lwan 6 comments
Alex - Nov 07 2010

Full Icon Themes by juandejesuss 1742 comments
"$HOME/.wine/drive_c/windows/Resources/themes/Seven"
then
rar x Seven.rar $HOME/.wine/drive_c/windows/Resources/themes/Seven -Y
Then you have to copy the "$HOME/.wine/user.reg" of an installed theme (your) to the "$HOME/.wine" of the user =)
Easy =) - Jul 24 2010

Full Icon Themes by juandejesuss 1742 comments
VAR="text"
....
VARN="text"
you can cut and copy that in a separated text and then by script you can sobstiture VAR(1-N) with "text" =)
However in that way you can easily sobstitute and correct sentences and, moreover, the localization is automatic =)
So no more "choose your lang pleaze" but "you're using spanish, so read this" xD - Jul 24 2010

Full Icon Themes by juandejesuss 1742 comments
In the bash file after the "#!/bin/bash" line you have to put:
export TEXTDOMAINDIR=***;
export TEXTDOMAIN=win2-7;
where *** is the path in which you put the lang file (default is /usr/share/locale).
Be aware that the path MUST be as below:
PATH_YOU_WANT/en/LC_MESSAGES
and you must write ONLY the part before the lang folder (en, es, it, etc)
The second export takes the name of the .mo lang file, choose whatever you want.
After that in the scripts you must enter the texts in this way:
"$(gettext -s "Text to be translated")"
ex. echo
"$(gettext -s "Hi folks")"
Then you must create a file with all the entries:
msgid "To run this program you must be ROOT!"
msgstr ""
#:
msgid "Code:"
msgstr ""
In the msgstr part you must enter the translation and then save the file in "win2-7.po".
Then you can send me the various file to me and I'll compile them (of course with the name "win_en.mo","win_es.mo", etc).
The wine theme is at this link:
http://dl.dropbox.com/u/1113702/Varie/Seven.rar - Jul 23 2010

Full Icon Themes by juandejesuss 1742 comments
have you inserted the win7 wine theme too? =)
I can pass it to you if not, with some instructions =)
However, for the lang thing, I can teach you how to use localization instead of "if lang=xx then VAR=..."
It's easy to manage and translate.
However I can help you in the spare time for Italian translation =) - Jul 22 2010

Full Icon Themes by Naf71 6 comments
It's not difficult to create, with imagemagick you can join 2 images into a 3rd (HOME EMBLEM + FOLDER BASE = folder_home). - Jun 24 2010

Full Icon Themes by juandejesuss 1742 comments
It's more easy use the localization stuff.
file.po:
#: localizated in SCRIPT.sh:3
msgid "I'm spanish"
msgstr "Yo soy de Espana"
...
SCRIPT.sh
#!/bin/bash
echo "$(gettext -s "I'm spanish")"
Check more online, I suggest you to use this system, it's easy and quick to translate and, moreover, no need to ask for the current language (it's automated) (however I'm italian) - Jun 16 2010

Wallpaper Other by marcstewart 14 comments

Wallpaper Other by marcstewart 14 comments
I'm willing to translating your app into italian (and later to include it in a project of mine).
Just a suggestion:
Create a "all-day-long" preset, so you'll already have all timings done.
(E.g. if you set 4 Images you'll have that TIME = (24*60)/20 # Minutes ) - Jun 10 2010

Various Gnome Stuff by hotice 21 comments
gksudo -k script.sh
in this way you would remove all the sudo inside the script and preserve the $HOME and $USER variables. - May 29 2010

Various Gnome Stuff by hotice 21 comments
en.pot:
%maintitle%Lucid Script
...
%kerneloption%Do you want to remove it?
script:
zenity --title="$(grep "$maintitle%" en.pot | cut -d'%' -f3)" --text="$(grep "$kerneloption%" en.pot | cut -d'%' -f3)"
Let me explain:
"$(grep "$maintitle%" en.pot | cut -d'%' -f3)"
$() indicates that the variable is the result of an operation (such as you mean with ans=$(zenity...)" )
grep TEXT FILE returns all the occurences of TEXT in FILE
cut -d'DELIMITER' -f'FIELD'
cuts a particular string (or more) into pieces depending on the DELIMITER, so, take for example %maintitle%Lucid script:
cut -d'%' cuts the string in:
1) ''
2) 'maintitle'
3) 'Lucid Script'
-f'FIELD' selects the field you need so the result of the commands are only the translations, give it a try. - May 06 2010

Various Gnome Stuff by hotice 21 comments
sudo apt-get -y --force-yes install googleearth googleearth-data
else
sudo apt-get -y --force-yes install ia32-libs
sudo apt-get -y --force-yes install googleearth googleearth-data
sudo apt-get install -f -y
fi
Will become, better:
sudo apt-get -y --force-yes install googleearth googleearth-data
if [ "i686" != `uname -m` ]; then
sudo apt-get -y --force-yes install ia32-libs
sudo apt-get install -f -y
fi
However:
echo "a" >> file
echo "b" >> file
is just useless:
echo "a
b" >> file - May 06 2010

Various Gnome Stuff by hotice 21 comments
The best way is using localizations:
script) $this is a var
file .pot) $this is a var = THIS IS A VAR
The medium way is to use this trick:
lang file:
%IDENTIFICATION_WORD%translation
script: .. title="$(grep "%IDENTIFICATION_WORD%" file.pot | cut -d'%' -f3)" ...
zenity --checklist supports --separator=$'\n' option instead of using IFS=| - May 06 2010

Various Gnome Stuff by hotice 21 comments
The best way is using localizations:
script) $this is a var
file .pot) $this is a var = THIS IS A VAR
The medium way is to use this trick:
lang file:
%IDENTIFICATION_WORD%translation
script: .. title="$(grep "%IDENTIFICATION_WORD%" file.pot | cut -d'%' -f3)" ...
zenity --checklist supports --separator=$'\n' option instead of using IFS=| - May 06 2010

Various Gnome Stuff by hotice 21 comments
For the language choice:
var="$(zenity --list --hide-column=1 --column=HIDE --column=Language "en" "English" "it" "Italian" .... "wt" "Whatever")"
..
YOURLANG="languages/$var.pot"
You'll save a lot of stuffs, and, moreover, why would you search in a radiolist for MORE items??? - May 06 2010

Wallpaper Other by MadnessMike 4 comments

Metacity Themes by zipperback 14 comments
Set it to minimize,maximize,close
End
Or
Ubuntu Tools > configure buttons
End
As you wish. - Apr 30 2010

Metacity Themes by zipperback 9 comments

Various Gnome Stuff by hotice 21 comments
http://gnome-look.org/content/show.php/Bs-ubuntu?content=123966&PHPSESSID=defc90bef63e3bc33740a7cd33be92b6
http://gnome-look.org/content/show.php/Change+Window+Buttons?content=123360
However the calendar part is useless (and caused to some users some problems).
New version of lucid are fixed for that "problem" (that is caused by a bad installation of the languages (if it is so)) - Apr 29 2010

Various Gnome Stuff by hotice 21 comments
You MUST check your scripts before releasing them, in some case it can harm.
However, if you just like to publish non-checked stuffs, you're welcome, if not, you can ask for directions (not necessary to me). - Apr 29 2010

Wallpaper Other by MadnessMike 4 comments
;) - Apr 29 2010

Various Gnome Stuff by hotice 21 comments
How does the second part works?
Do those checks really mean something or not?
Do they check if the program is already installed?
More over, repos, programs and some of the features of the first part are already present in Ubuntu Tweak and in Ailurus isn't that enough? - Apr 29 2010

Metacity Themes by zipperback 14 comments

Metacity Themes by zipperback 9 comments
Well this theme is useless.
There are a lot of programs to change the position, or better you can use the gconf-editor options. - Apr 29 2010

Nautilus Scripts by hitokiri-sama 8 comments

Nautilus Scripts by meinhard 18 comments
It does the same (and more) thing - Apr 26 2010

Nautilus Scripts by hitokiri-sama 8 comments

Nautilus Scripts by Thura 62 comments
that program already exists. - Apr 26 2010

Compiz Themes by johnnyg 58 comments
So the options are unavailable. - Apr 23 2010

Nautilus Scripts by marc41 3 comments
Ex:
my username is "killer".
echo "Hello $(whoami)"
Output: Hello killer
It's an interesting script, but is confusionary, and, moreover, you CAN'T exit!
Have you inserted some exit functions?
For example after a zenity dialog:
if [ "$?" -eq 0 ]; then
exit
fi
I suggest you to use a dialog per time:
Zenity dialog 1:
[] Change font
[] Change color
...
[] Show preview
and so on. - Apr 23 2010

Compiz Themes by johnnyg 58 comments

Full Icon Themes by juandejesuss 1742 comments

Full Icon Themes by juandejesuss 1742 comments

Full Icon Themes by juandejesuss 1742 comments
Right now I have no more crashes, so, no more screenshots =(
The theme for dockbarx is linked below in the other comments ;) - Apr 19 2010

Full Icon Themes by juandejesuss 1742 comments
The right one is:
if [ -f FILE ]; then
remember the spaces after the [ and before the ] - Apr 19 2010

Full Icon Themes by juandejesuss 1742 comments

Full Icon Themes by juandejesuss 1742 comments
I use the same dockbarx theme =P Its real great!
The command to check if there is a program:
which PROGRAM
and it returns the path, if exists.
But sometimes it doesn't work so you can check for a particular file:
if [ -f /path/file ]; then # file exists. - Apr 18 2010

Full Icon Themes by juandejesuss 1742 comments
1) I'm not sure the part of the script that let you choose the panel is working (I had no panel at the end of the installation)
2) The seven theme for gnomenu is not working and causes crashes of gnomenu itself.
3) For gnomenu is missing the menu theme and above of all the ORB!
You can easily find working pieces here on gnome-look (I can link them to you if you want)
4) For the blur, it's better if you place a picture of the tweaks needed because I'm having problems settings the right stuffs too.
I've a sort of blur but is very very poor.
5) DockbarX has a seven like theme, I can link that project too.
6) The alert icon (in actions, windows icons) is somewhere badly setted because in the lower right corner is displayed stretched as hell.
7) I't a very nice work =D Damn, not a bug =P - Apr 18 2010

Full Icon Themes by juandejesuss 1742 comments
I found 2-3 little "mistakes":
1) I suggest you to add at the very beginning of this script:
"if [ ! $( id -u ) -eq 0 ]; then
echo "You need to be root to run this script"
exit
fi"
To prevent users to run the script if non root.
2) The command "uname -m" returns the right architecture (32/64) so you don't need to ask users to insert it ;) - Apr 17 2010

GTK2 Themes by deusnova 37 comments

GTK2 Themes by IDtucho 6 comments
I've taken your script and modified it to fit with my Chamelon theme, I'm trying to change the color of the metacity theme during the whole day (a change every 30 min).
The problem is, I think that is for the original script too, that if I've an open window and the metacity changes, the window displayed freeze so you have to minimize and maximize it to have it working again.
Any idea? - Mar 25 2010

Full Icon Themes by deusnova 26 comments
Alex - Mar 19 2010

Conky by spitfire23bc 34 comments
I'm trying your screenlet, but I've got one problem:
when I'm downloading a file I can't read the complete text but:
Downloading 1 file ( 120 K...)
And I can't resize the screeenlet to read the complete sentence.
How can I read the complete (120 Kb/s etc) ?
Alex - Mar 11 2010

Wallpaper Other by pablomoreno 2 comments
Great job mate! - Mar 07 2010

Fonts by SeanParsons 15 comments
Unlucly you can't install too much fonts because it would slow a lot the startup process.
So, IMHO, best way to avoid slow performances is to check the previews at the main website and then download only the choosen ones.
(Even if a classification per genres would have been easier and faster) - Jan 14 2010

Wallpaper Other by genetrix 1 comment

Icon Sub-Sets by ertz 32 comments
Alex - Dec 22 2009