|
|
#1376 | |
|
Quote:
Date (w/ thanks to Chartreux for injecting this easier code back to my brain again): Code:
date +"%d %B %Y" Code:
date +"%l:%M %p" |
||
|
|
0
|
|
|
#1377 |
|
OK guys just a few tidy up questions for me, as I think Ill leave mine for now as its my xmas theme, and first go.
But take a look at my screen shot, and you see such things as, my cpu, the battery, and trash, scripts,? Well simple question, they don't seem to refresh on there own, what I mean is, if left on DT as they should, they just stay the numbers they were previous. Now if i reopen geektool, and click on the box with the details in, they intsantly refresh, so its like I have to manually refresh them. Any reason why, and how can I fix it.?? 1 final point, the cpu one, always shows 100%, doesn't seem right. thanks for any help... (click on screeny for full size)
|
|
|
|
0
|
|
|
#1378 | |
|
Quote:
|
||
|
|
0
|
|
|
#1379 |
|
|
0
|
|
|
#1380 |
|
Picasa script
Hi everyone, cool scripts in this threat. It has helped me allot when playing with geektool.
I've searched Google for at Picasa web album script to display the pictures of my web albums. Do anyone know if this exist? I know that Picasa uses RSS so maybe one could extract the pictures through that? I want to take between 5 and 10 images randomly from one of my albums and display it on the desktop. Can anyone help with this? EDIT: BTW, I'm also looking for a script to pool my appointments from Google calendar if anyone can help with this or point me in the right direction? Last edited by fr3ak; Dec 8, 2009 at 02:49 AM. Reason: One more question |
|
|
|
0
|
|
|
#1381 |
|
|
0
|
|
|
#1382 |
|
That could be why they don't refresh, and definitely why the CPU is at 100%.
Put the time to refresh every 60 seconds, the date every 86400 seconds (24 hours), etc. etc. |
|
|
|
0
|
|
|
#1383 | |
|
Anyone?
Quote:
|
||
|
|
0
|
|
|
#1384 |
|
There are several posts in this thread regarding METAR and TAF. Maybe not to your specific sites, but they should help.
http://forums.macrumors.com/showpost...postcount=1250 http://forums.macrumors.com/showpost...postcount=1251 http://forums.macrumors.com/showpost...postcount=1253 http://forums.macrumors.com/showpost...postcount=1254 |
|
|
|
0
|
|
|
#1385 | |
|
Quote:
But thanks anyway for ya help! |
||
|
|
0
|
|
|
#1386 |
|
I can't seem to get this to work for me, does anyone have any pointers.
http://www.macosxtips.co.uk/index_fi...n-desktop.html I downloaded and installed iCalBuddy and my initial try was with the code given at the bottom but nothing came up. It said in terminal that thats where it was installed but when I go to look for the files I cant seem to find usr/local/bin |
|
|
|
0
|
|
|
#1387 | |
|
Quote:
![]() Thanks to all who helped. Last edited by Wowzera; Dec 8, 2009 at 11:28 AM. |
||
|
|
0
|
|
|
#1388 | |
|
Quote:
How do i set a limit to the amount of content that is displayed? |
||
|
|
0
|
|
|
#1389 |
|
I finally managed to make my weather script work, but whenever I try to change the unit from celsius to fahrenheit it stops showing anything at all.
Code:
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USVA0007&u=f" | grep -E '(Current Conditions:|C<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' | tail -n1 |
|
|
|
0
|
|
|
#1390 | |
|
Quote:
Celcius Code:
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USVA0007&u=c" | grep -E '(Current Conditions:|C<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' | tail -n1 Code:
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USVA0007&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' | tail -n1 |
||
|
|
0
|
|
|
#1391 | |
|
Quote:
Last edited by RogersDA; Dec 8, 2009 at 08:54 PM. |
||
|
|
0
|
|
|
#1392 |
|
thanks a bunch!!!!!!!
|
|
|
|
0
|
|
|
#1393 | |
|
Quote:
__________________
site |
||
|
|
0
|
|
|
#1394 | |
|
Quote:
|
||
|
|
0
|
|
|
#1395 | |
|
Quote:
an applescript to get the information a shell script to run the applescript The following applescript is placed in the directory of choice. Run applescript, insert the following code, compile/save as a file; e.g., mail.scpt I use /var/tmp to save all my geektool stuff. The code below uses several spaces that I use to help things line up when using a fixed-width font. Code:
set newline to ASCII character 10 set finalText to "" tell application "Mail" set theMessages to (messages of inbox whose read status is false) repeat with i from 1 to number of items in theMessages set thisMessage to item i of theMessages set dateMsg to (date received of thisMessage as string) set fromMsg to (sender of thisMessage as string) set subjMsg to (subject of thisMessage as string) set finalText to finalText & " From: " & word 1 of fromMsg & " " & word 2 of fromMsg & newline & " Date: " & word 3 of dateMsg & " " & word 2 of dateMsg & " " & word 4 of dateMsg & newline & " Subj: " & subjMsg & newline & newline end repeat end tell finalText Code:
echo Unread EMail osascript /var/tmp/mail.scpt |
||
|
|
0
|
|
|
#1396 | |
|
Quote:
|
||
|
|
0
|
|
|
#1397 |
|
Quote:
What is the script for battery percentage? I've scoured the internet looking for one and all I could find was someone's screenshots on flickr and they haven't answered my question on how to do it. I asked earlier in this topic if anyone had a way and didn't get an answer... Thank you. |
|
|
|
0
|
|
|
#1398 | |
|
Quote:
|
||
|
|
0
|
|
|
#1399 |
|
Anyway to have Geektool start automatically on startup? i find my self having to start it up again all the time.
__________________
gdgtmac.com <- Get your tech fix Get Some Beautiful iPhone 5 Wallpapers nestphoto.com |
|
|
|
0
|
|
|
#1400 |
|
|
0
|
![]() |
|
| Tags |
| background, desktop, geektool, time, wallpaper |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| thread | Thread Starter | Forum | Replies | Last Post |
| How to fix this Geektool Script for Lion? | its | Mac OS X 10.7 Lion | 9 | Jun 21, 2012 06:30 PM |
| Your GeekTool Scripts (Part 2) | celticpride678 | Mac Applications and Mac App Store | 0 | Jun 5, 2010 11:26 PM |
| 2 Calendars on the Desktop Using a Geektool Script? | Fisa | MacBook | 2 | Nov 26, 2009 05:12 AM |
| Why do I have to manually refresh GeekTool Scripts everytime I restart my mac. | pi110w | Mac Basics and Help | 0 | Oct 3, 2009 03:54 PM |
| somewhat new geektools script (audio player info) | defsquad | Mac Applications and Mac App Store | 0 | Mar 8, 2008 07:40 AM |
All times are GMT -5. The time now is 11:41 PM.













Linear Mode

