↓ Twitter is updated more often, so read it! ↓

Meditation

I’ve recently been experimenting with meditation as a means of clearing my mind before going to bed or while sitting in traffic. I see meditation as sort of mental defragmentation; a way to reorganize my thoughts by clearing the proverbial table of everything, then putting this back on the table when needed.

While not concerned with overcoming depression, as I am not affected by that, a recent Change Blog entry titled How To Meditate gave me some pointers to help clear my mind.

You may want to read that article, then return here to better understand the remainder of this post.

I already have control of my thoughts—most of the time, that is. Sure, there are times when random cartoons get drawn or I am compelled suddenly to listen to some obscure song. The latter, though, spawned a great theme for the past few weeks’ work music selection though: shoegazing music, ala My Bloody Valentine, Chapterhouse, etc. I am capable of rejecting thoughts which I’d rather not muse, and can keep those thoughts at bay effortlessly.

Patience is something I’ve always had. There are times I think I have too much patience, but the situation ends up working out better in the end when I’ve used my (legendary?) patience. However, I know it takes time and work—practice—to perfect the art of meditation. My patience is still tried by incompetent or malicious people, and I’d just as soon dismiss them from their responsibilities and take those responsibilities in addition to my own until a suitable replacement comes.

Detachment from my thoughts is related to control of them, but adds in the ability to see the thought from an external camera, per say. If I can let go of a thought—if I can detach from it—I can clear it from my mental table easily. I can also see that thought from other peoples’ perspective, and understand their support or opposition thereof. This consideration of other peoples’ perspective and how much weight it bears in relation to my perspective allows me to understand the greater picture and detach myself from my own tunnel vision.

Remaining intense and disciplined is difficult, but I’m improving with practice. I find I’m able to force myself to begin clearing my head quicker as time goes on.

Concentrating on something else is the hardest part of meditation, at least for me. I tend to clear my mind of one thing by replacing it with another, less important thing. Sometimes, though, that new thought leads to something else which then leads to another heavy thought which I’d rather not consider. Recently, I’ve led my mind to space scenes ala APOD or some of the nature pictures I’ve taken in the past. These are things that have little or no relevance to things related to my daily life and are perfect fodder for mental table clearings—the last thing on the table, perhaps.

Some folks find religious prayer meditative. I don’t because it puts more things in my mind instead of centering me and clearing my mind. If you’d ask me, I’d recommend avoiding prayer when meditating for that reason.

I still have a long way to go before meditation is any more than a means to fall asleep quickly. I’d eventually like to be able to use it to calm myself down when agitated or as way to induce a semi-hypnotic, trance-like state.

HOWTO: Astronomy Picture of the Day for GNOME

Astronomy Picture of the Day is a really neat page which is generated daily by NASA. It shows a single picture captured by some NASA-affiliated person and some text to describe it.

These pictures are perfect for desktop backgrounds. There’s a program to automatically set it as the background for Windows, but we Linux, or more specifically, GNOME, users can do it in a simple script.

Drop this script somewhere on your system and create a cron schedule with crontab -e for it. The cron lines are in the script. I’d recommend the four hour intervals if you don’t keep your computer on all the time, or the twelve or once-a-day intervals if you do.

Oh, and you might need to install cron. Gutsy doesn’t have it by default, so you can do it through Synaptic or using sudo apt-get install cron at a command line.


#!/bin/bash
#Filename: apodwallpaper
#Location: ${HOME}/.bin
#Purposes: Downloads NASA Astronomy Picture of the Day and displays it as the
#          GNOME background 
#Author(s): acvwJosh of Ubuntu Forums, modified by Colin Dean <http://cad.cx>

#add the following line to your crontab if you want to run this hourly
#10   *  *   *   *     apodwallpaper

#add this line if you want to run it every four hours
#10 0,4,8,12,16,20 * * * apodwallpaper

#add this line if you want to run it every twelve hours
#10 0,12 * * * apodwallpaper

#add this line if you want to run it daily 
#10 0 * * * apodwallpaper

#don't forget to put this script in your $PATH.
#I usually add ${HOME}/.bin to my path in .bash_profile and put my scripts there

#change this if you want the image to be in a different directory
FILENAME=apodwallpaper
APODWALLPAPER=${HOME}/.${FILENAME}

mkdir -p ${APODWALLPAPER} && cd ${APODWALLPAPER}

# download image from apod site
wget -A.jpg -R.txt -r -l1 --no-parent -nH http://antwrp.gsfc.nasa.gov/apod/astropix.html

# move image from obscure folder to main folder, rename image
find ./apod -name "*.jpg" | while read line ; do
mv "$line" "${FILENAME}.jpg"
done

# set image to wallpaper
gconftool-2 -t string -s /desktop/gnome/background/picture_filename "blank.jpg"
gconftool-2 -t string -s /desktop/gnome/background/picture_filename \
                         "${APODWALLPAPER}/${FILENAME}.jpg"
gconftool-2 -t string -s /desktop/gnome/background/picture_options "zoom"

#get rid of cruft
rm -rf apod robots.txt

There’s a thread about this functionality at Ubuntu Forums entitled, APOD? anyone.