Re: [dev] Re: Maintaining sbase

2013-06-26 Thread Chris Down
On 27 June 2013 14:33, Martti Kühne wrote: > Still. What's pee good for? A quick google disappointed my > expectations in that matter. It's for people that don't know how to use FIFOs/process substitution properly ;-)

Re: [dev] Gmail watcher from commandline

2013-06-26 Thread Viola Zoltán
Okay, then no reboot. Just run this in the commandline: crontab /home/YourUserName/cron/levelemjott Zoli 2013/6/27 Martti Kühne > On Wed, Jun 26, 2013 at 6:35 AM, Viola Zoltán wrote: > > > > Gmail Watcher — without Firefox, from commandline! > > > > cool. > > > [...] > > Reboot, and enjoy! >

Re: [dev] Gmail watcher from commandline

2013-06-26 Thread Martti Kühne
On Wed, Jun 26, 2013 at 6:35 AM, Viola Zoltán wrote: > > Gmail Watcher — without Firefox, from commandline! > cool. > [...] > Reboot, and enjoy! > not cool. I won't reboot before the next kernel is done. cheers! mar77i

Re: [dev] Re: Maintaining sbase

2013-06-26 Thread Martti Kühne
On Wed, Jun 26, 2013 at 5:43 AM, Strake wrote: > On 25/06/2013, Martti Kühne wrote: >> [...] >>> pee >> >> And a cloth to clean up the mess... > > No, that's what sponge is for. > Still. What's pee good for? A quick google disappointed my expectations in that matter. cheers! mar77i

Re: [dev] daemon for DWM

2013-06-26 Thread Calvin Morrison
Hi, please use plain text. Thank you, Calvin. On 26 June 2013 20:51, Viola Zoltán wrote: > Hi, DWM users! I wrote a daemon to the DWM status bar! I send it in > attachment. The program name "kajjam". Start it simple: ./kajjam > > Compile it with this command: > > g++ -funsigned-char -funsigned-

[dev] daemon for DWM

2013-06-26 Thread Viola Zoltán
Hi, DWM users! I wrote a daemon to the DWM status bar! I send it in attachment. The program name "kajjam". Start it simple: ./kajjam Compile it with this command: g++ -funsigned-char -funsigned-bitfields -Wall -Wno-long-long -Wunused -Wextra -pedantic -lX11 kajjam.cpp -o kajjam How to stop it: k

Re: [dev] [st] some more random fixes

2013-06-26 Thread Markus Teich
fyi --Markus Betreff: Re: some more random fixes Datum: Wed, 26 Jun 2013 19:19:25 + (UTC) Von: Thorsten Glaser An: Markus Teich Markus Teich dixit: > I don't know if it is that uncommon. Answer below². > For the keys Let me make this a table and rotate it by 90°: st urxv

Re: [dev] [dwmstatus] dropbox status

2013-06-26 Thread Maximilian Dietrich
On Wed, Jun 26, 2013 at 04:45:56PM +0300, Dennis Yurichev wrote: > Hi. > > Is there any recipe for showing dropbox sync status in status line? You could use the systray patch [1] or a standalone system-tray. [1] http://dwm.suckless.org/patches/systray Cheers, Maximilian D.

Re: [dev] [dwmstatus] dropbox status

2013-06-26 Thread Andrew Gwozdziewycz
There's a python command line client for dropbox that could provide it. You'd could call out to popen(3) to grab it. So, something like: char *status[50]; FILE *f = popen("dropbox status", "r"); fgets(status, 50, f); pclose(f); would do the trick. On Wed, Jun 26, 2013 at 9:45 AM

[dev] [dwmstatus] dropbox status

2013-06-26 Thread Dennis Yurichev
Hi. Is there any recipe for showing dropbox sync status in status line? -- http://www.yurichev.com

[dev] [sbase] sponge v2

2013-06-26 Thread Jakob Kramer
Hello! I have rewritten sponge(1) so stdout is not such of a special case anymore. Now it also writes to symbolic links' destinations instead and supports other kinds of files. Also output to stdout works as it should now (soaks it up first). In my opinion it is okay to have sponge called witho

Re: [dev] [sbase] sponge

2013-06-26 Thread Raphaël Proust
On Wed, Jun 26, 2013 at 3:15 AM, Galos, David wrote: >> Except it does not actually sponge in the stdout case, only when >> writing to file. Perhaps it would be better to drop support for stdout? >> Or cat temp file to stdout at the end? Why does it open a temp file >> when not using it? > > Defin