ShortyDK85, Which ImageMagick source did you use to compile ImageMagick?
Which source I used to compile? Not sure I understand your question, but I downloaded the program from ImageMagicks homepage and installed it through Terminal.
ShortyDK85, Which ImageMagick source did you use to compile ImageMagick?
Which source I used to compile? Not sure I understand your question, but I downloaded the program from ImageMagicks homepage and installed it through Terminal.
sudo uninstall
sudo clean
I believe I installed it correctly... I have to admit, I can't remember where I got the install files from on IMs website, but I managed to create a test.png through terminal after installing it, so I would believe it is operational...Did you use the Binary release or the unix source from here
it is better off using the sudo to build and install any sources through terminal if you didn't. But if you haven't installed it correctly you would have uninstall it and to reinstall it
here the commands to uninstall
Code:sudo uninstall sudo clean
I know, right... Although, when we created the image in post 3427, we did it in Terminal rather than through a code in GeekTool. I have tried to use your code in a shell with GeekTool, but when enabling "Status Feedback", the indicator is red. Furthermore, I tried searching for the file it is supposed to create, "label.png" and it is nowhere to be found![]()
[18:14:40][taco@pacos-taco-stand]$ | convert -rotate 10 -background none -fill white -pointsize 22 text:- -trim ~/label.png
-bash: syntax error near unexpected token `|'
date | convert -rotate 10 -background none -fill white -pointsize 22 text:- -trim ~/label.png
Did you use the Binary release or the unix source
date | convert -rotate 10 -background none -fill white -pointsize 22 text:- -trim ~/label.png
xtacocorex > thanks for the corrected reply. I was hoping that would do the trick, but unfortunately, I still get the red circle
date | /usr/local/bin/convert -rotate 10 -background none -fill white -pointsize 22 text:- -trim ~/label.png
Figured it out. Geektool 3 doesn't know about the /usr/local/bin Path. Here is what you have to do:
1 - For the command, you need to pre-pend the path to convert in the call to the command:
Code:date | /usr/local/bin/convert -rotate 10 -background none -fill white -pointsize 22 text:- -trim ~/label.png
2 - Point an image geektool to label.png
Attaching screenshots. In the first one, disregard the < after the filename, that is a typo.
Just so everyone else knows, I've installed Geektool 3 in addition to Nerdtool so I can now debug issues with scripts and that program.
Oh my god, corex! I freakin' love you! It finally worksUn-freakin' believeable! Thank you sooooo much! Now I just need to find out what I need to replace to separately show the time (15:03) and the date (30/1)
date "+%d" |[COLOR="Red"] /usr/local/bin/convert[/COLOR] -rotate 90 -background none -fill black -font Nanum-Pen-Script-Regular -channel RGBA -blur 0x6 -pointsize 144 -density 200 label:@- -trim ~/Documents/Nerdz/date.png
If you look back to post #3539 I showed you the code that works for both nerdTool and geekTool.
Don't mean to be a smart a$$ but PAY-ATTENTION
Code:date "+%d" |[COLOR="Red"] /usr/local/bin/convert[/COLOR] -rotate 90 -background none -fill black -font Nanum-Pen-Script-Regular -channel RGBA -blur 0x6 -pointsize 144 -density 200 label:@- -trim ~/Documents/Nerdz/date.png
@ xtacocorex
I'm using your Five Day Forecast V4 script, I can't figure out why the -u doesn't work to underline the headers this is what I see [4m today[Om
If you look back to post #3539 I showed you the code that works for both nerdTool and geekTool.
Code:date "+%d" |[COLOR="Red"] /usr/local/bin/convert[/COLOR] -rotate 90 -background none -fill black -font Nanum-Pen-Script-Regular -channel RGBA -blur 0x6 -pointsize 144 -density 200 label:@- -trim ~/Documents/Nerdz/date.png
You need to make sure the encoding is set to ASCII and check the "colorize output" option. This allows the ASCII escape sequences to work.
What's interesting is that you don't need to include the path to convert in Nerdtool. Odd too since Nerdtool is based on the Geektool source.
how do i make text vertical?
I am new to Mac coming over form windows and Rainmeter. Is there a script in Geektool to use your own quotes of the day that is in a txt file rather than using one from the net?? Thanks an loving mac so far!!
I am new to Mac coming over form windows and Rainmeter. Is there a script in Geektool to use your own quotes of the day that is in a txt file rather than using one from the net?? Thanks an loving mac so far!!
osascript /Users/Jim/Documents/Scripts/quotes.scpt | fold -sw900
set newline to ASCII character 10
set quoteFile to "untitled:Users:Jim:Documents:Scripts:quotes.txt" as alias
open for access quoteFile
set quoteList to every paragraph of (read quoteFile)
set list_count to the count of quoteList
set pick to random number from 1 to list_count
set finalText to item pick of quoteList as string
close access quoteFile
finalText
Well damn, didn't see that either. What's interesting is that you don't need to include the path to convert in Nerdtool. Odd too since Nerdtool is based on the Geektool source.
how do i make text vertical?
well I did run a small test to see if you need to include the path to convert, I use 3 scripts to show "month, date, and day" I removed the path to convert on the "month, and date scripts". Its been a few hours and my "month, and date scripts" hasn't updated yet, only the day script has the convert path and only the day script updated.
Hi, my cal command is giving me wrong dates from february 2012 onwards.
Any help would really be appreciated!