Carl T. Miller

Authored Comments

Thank you! I've gone through and customized my xfce desktop and had a similar learning experience.

The only thing I couldn't figure out was how to change the color of the border of the active window. I was looking specifically for configurations for borders without much luck. And you've pointed me in the right direction--namely to tinker with the *-active.xpm files.

Back to the drawing bored^H^H^H^H^hboard!

Very nice. Let me add a few special cases that aren't immediately obvious.

To match weekdays:
0 7 * * 1-5 command

To match even minutes:
0-59/2 * * * * command

To match odd hours:
0 1-23/2 * * * command

To match months starting a new quarter:
0 7 1 1-12/4 * command

To match second Wednesdays:
0 7 14-20 * * [ ```$(date +%a) = Wed ] && command

To match last day of month:
0 7 * * * [ `` $(date -d 1day +\%d`) = 01 ] && command

To match last Saturday of month:
0 7 * * * [ `` $(date -d 8days +\%d`) -lt 8 -a `$(date +\%a) = Sat ] && command