Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Chris Down
Džen writes: > Why fork scron if you could just provide useful patches to the > original author? To expand further on FRIGN's reply, forking with Git is not as destructive as it would be with, say, CVS or SVN. There are standard tools that can quite easily integrate the forked upstream back to mai

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread FRIGN
On Sat, 5 Jul 2014 21:30:25 +0200 Džen wrote: > Why fork scron if you could just provide useful patches to the original > author? Because 2f30 > ∞ No, seriously: With git, forking is a very appropriate form of working on something. Waiting for patches to be applied, especially if they're drama

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Džen
On Sat, Jul 5, 2014 at 11:35 AM, Dimitris Papastamos wrote: > I've forked scron[0] [...] Why fork scron if you could just provide useful patches to the original author?

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Jack L. Frost
Nice! Thanks a lot. I've made an AUR package for scron btw: https://aur.archlinux.org/packages/scron-git On Sat, Jul 05, 2014 at 12:52:05PM +0300, Ari Malinen wrote: > Maybe something like this: > --- /home/defer/temp/scron/crond.c 2014-07-05 12:16:11.917457442 +0300 > +++ crond.c 2014-

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Dimitris Papastamos
On Sat, Jul 05, 2014 at 12:52:05PM +0300, Ari Malinen wrote: > Maybe something like this: Nice! Applied it just now. I only removed the debug message in matchentries().

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Ari Malinen
Maybe something like this: --- /home/defer/temp/scron/crond.c 2014-07-05 12:16:11.917457442 +0300 +++ crond.c 2014-07-05 12:47:43.147434577 +0300 @@ -23,6 +23,7 @@ struct range { int low; int high; + int div; }; struct ctabentry { @@ -150,12 +151,15 @@ matchentry(

Re: [dev] Misbehaving floating window in dwm

2014-07-05 Thread Alexander S.
2014-07-05 0:03 GMT+04:00 Michal Haško : > 2014-07-04 13:15 GMT+02:00 Alexander S. : >> 2014-07-04 0:08 GMT+04:00 Michal Haško : >>> Nope, doesn't help. >> Did you try xdotool/wmctrl, also? > > As I understand it, that would mean manual intervention every time I > use pianoteq, right? I certainly d

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Dimitris Papastamos
On Sat, Jul 05, 2014 at 11:41:00AM +0400, Jack L. Frost wrote: > No */n for “every n ”? > Pretty much useless without that if you ever need a command to be run every > five minutes, for example. I've forked scron[0] and I plan to implement */n at some point. If you get to it first, please send a

[dev] [ANNOUNCE] abduco-0.1, a lightweight alternative to tmux and screen

2014-07-05 Thread Marc André Tanner
Hi, I'm pleased to announce the first official release of abduco, a tool for session {at,de}tach support which allows to run a process independently from its controlling terminal. http://www.brain-dump.org/projects/abduco/abduco-0.1.tar.gz with sha1sum 063b66d8a9a83ecd5b9501afc86812a06ad7907

[dev] [ANNOUNCE] dvtm-0.12, tiling window management for the console

2014-07-05 Thread Marc André Tanner
Hi, I just released dvtm-0.12, the tiling window manager for the console: http://www.brain-dump.org/projects/dvtm/dvtm-0.12.tar.gz with sha1sum 1b433db25d9751e820fc8213874eb57fd15e5552 dvtm-0.12.tar.gz Changes include: * fixes to the redraw logic * new copymode key bindings CTRL+u (page

Re: [dev] [scron] simple cron daemon

2014-07-05 Thread Jack L. Frost
No */n for “every n ”? Pretty much useless without that if you ever need a command to be run every five minutes, for example. On Wed, Jul 02, 2014 at 12:34:10PM +0300, Ari Malinen wrote: > I made cron daemon because vixie-cron was too complex for my taste. It > does the job for me. Maybe someone