Pschedule 1.1.6 - Task on time

Window managers, icon programs, widgets, etc.
Message
Author
User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#151 Post by don570 »

I modified pclock for fatdog arm and I noticed that
the alarm button can be made smaller. It just requires an hbox within an hbox

Code: Select all

<vbox>     
      
      <edit editable="false" left_margin="10"><input file>'$WORKDIR'/alarm_txt</input></edit>
          <vbox>
                <hbox homogeneous="true"><hbox>
                <button height-request="50">
                <label>'$(gettext "Define Alarm")'</label>
                <action>alarm</action>
               <action>echo $ALARM > '$WORKDIR'/ALARM</action>
               </button>
               </hbox></hbox>
          </vbox>
               <hbox>
                      <text><label>'$(gettext "Audio")'</label></text>
                      <entry accept="file">
                      <variable>ALARM</variable>
                      <input>cat '$WORKDIR'/ALARM</input>
                      </entry>
                      <button>
                      <input file stock="gtk-open"></input>
                      <action type="fileselect">ALARM</action>
                      </button>
                      </hbox>
</vbox>
Attachments
screenshot-pclock.png
final result of button
(4.77 KiB) Downloaded 463 times

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#152 Post by don570 »

http://murga-linux.com/puppy/viewtopic. ... 077#962077

There's a new version of pschedule . The launching is different. Apparently some strange behaviour
with the busybox version of crond
James bond noticed this years ago but didn't report it to you. :cry:
#!/bin/dash
# Description: System task scheduler.
# jamesbond 2012

start_cron() {
# static uclibc crond only understands POSIX tz, convert
export TZ=GMT$(date +%z | sed 'y/+-/-+/; s/.../&:/')
echo "Starting task scheduler."
[ ! -e /var/spool/cron/crontabs ] && ln -sfT /etc/crontabs /var/spool/cron/crontabs
crond
}

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#153 Post by zigbert »

Does pSchedule trouble in Puppy as well, or is this a Quirky problem?
What happens using jamesbonds code if crond is not from busybox?

Thanks for feedback

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

#154 Post by BarryK »

don570 wrote:http://murga-linux.com/puppy/viewtopic. ... 077#962077

There's a new version of pschedule . The launching is different. Apparently some strange behaviour
with the busybox version of crond
James bond noticed this years ago but didn't report it to you. :cry:
#!/bin/dash
# Description: System task scheduler.
# jamesbond 2012

start_cron() {
# static uclibc crond only understands POSIX tz, convert
export TZ=GMT$(date +%z | sed 'y/+-/-+/; s/.../&:/')
echo "Starting task scheduler."
[ ! -e /var/spool/cron/crontabs ] && ln -sfT /etc/crontabs /var/spool/cron/crontabs
crond
}
Yes, I overhauled Pschedule and the version is now 1.1.6-3, blog report here:
http://barryk.org/news/?viewDetailed=00624
[url]https://bkhome.org/news/[/url]

User avatar
Subito Piano
Posts: 731
Joined: Mon 28 May 2007, 03:12
Location: UPSTATE New York
Contact:

Scheduling non-standard reoccurences

#155 Post by Subito Piano »

IDK if anyone else would be interested in this, but i wanted to run a task at irregular intervals - in my case, workday afternoons, Mon through Fri at 2:10PM. I found i could not use CTRL+Click to pick multiple days (or multiple times or dates or months) for an event in Pschedule. However, I discovered that i could create the task without setting a schedule for it (i.e., just use the default, every minute), save it, then open the file /var/local/cron/crontabs/root and change it from:

* * * * * my_program #

to:

20 14 * * 1,2,3,4,5 my_program #

Save and exit. Good to discover, perhaps someone else can use.
For anyone unfamiliar with cron scheduling, it's easy to find on the 'net; Corntab is a fine online tool to generate the proper time codes.
[color=green]"God is love" - [url=https://www.esv.org/1+John+4/]I John 4:12[/url][/color]
ðŸ￾§ ðŸ￾§ ðŸ￾§ Rockin' on a 2007 IBM/Lenovo T60 Centrino Duo with 32-bit XenialPup 7.5! :D
(A/V Linux for live digital synth needs)

Post Reply