PDA

View Full Version : Request to a high level programmer



Sockerdrickan
April 4th, 2008, 06:12 AM
How can I make a pop-up gtk window say "Backup time" Mondays and Fridays on my desktop?:guitar:

LaRoza
April 4th, 2008, 06:38 AM
You can use zenity to make simple GUI widgets.



#!/bin/bash
zenity --info --title="Backup" --text="Time to Backup"


(Install zenity and make this executable)

Now you will have to use cron to make it run at certain times, research that independantly, or wait for another response. I have no experience using it.

/etc/crontab

Sockerdrickan
April 4th, 2008, 06:54 AM
Awesome

If anyone knows how to use cron then please submit an example here.

LaRoza
April 4th, 2008, 07:26 AM
Awesome

If anyone knows how to use cron then please submit an example here.

It seems simple enough, but I am not going to give examples unless I am sure it would work. http://en.wikipedia.org/wiki/Cron

AnRa
April 4th, 2008, 07:32 AM
You may use gnome-schedule (apt://gnome-schedule) to configure cron easily. :)