Re: [dev] st -e

2015-07-09 Thread Roberto E. Vargas Caballero
On Thu, Jul 09, 2015 at 10:23:45PM +0200, S. R. Gal wrote: > > st -e sh -c 'tmux a -d || tmux' > > Both, above and st -e ''tmux a -d || tmux'', seem to work but they > result with the following error messages: > Theoretically you can also omit -e in both cases. Regards,

Re: [dev] st -e

2015-07-09 Thread Eric Pruitt
On Thu, Jul 09, 2015 at 10:23:45PM +0200, S. R. Gal wrote: > erresc: unknown private set/reset mode 1005 > erresc: unknown str ESC]112ESC\ > erresc: unknown str ESC]112ESC\ > erresc: unknown private set/reset mode 1005 > > Should I not pay attention to those messages? Those messages are caused by

Re: [dev] st -e

2015-07-09 Thread Dmitrij D. Czarkoff
S. R. Gal said: > Is there an advantage of sh -c as oposed to double quotes? Looks like opposite is true - with double quotes you'll get one process less. -- Dmitrij D. Czarkoff

Re: [dev] st -e

2015-07-09 Thread S. R. Gal
-- From Dmitrij D. Czarkoff 09-07-2015 at 17:40 -- > S. R. Gal said: > > 1. what would be st syntax for xterm -e 'tmux a -d || tmux'? > > st -e sh -c 'tmux a -d || tmux' Both, above and st -e ''tmux a -d || tmux'', seem to work but they result with the following error messages: e

Re: [dev] st -e

2015-07-09 Thread Dmitrij D. Czarkoff
S. R. Gal said: > 1. what would be st syntax for xterm -e 'tmux a -d || tmux'? st -e sh -c 'tmux a -d || tmux' > 2. what font st uses when there is no glyph in the default one? Whatever system provides? -- Dmitrij D. Czarkoff

[dev] st -e

2015-07-09 Thread S. R. Gal
1. what would be st syntax for xterm -e 'tmux a -d || tmux'? 2. what font st uses when there is no glyph in the default one? Sincerely, S. R. Gal

[surf] Downloading files (was: Re: [dev] st -e not working?)

2011-05-12 Thread Jonathan Slark
On 12/05/2011 23:39, Connor Lane Smith wrote: On 12 May 2011 23:34, Sir Cyrus wrote: However I'm still having trouble downloading files in surf. I've tried recompiling using "st" in place of "xterm" in config.def.h, as well as creating a symbolic link from xterm to st, but neither seem to work.

Re: [dev] st -e not working?

2011-05-12 Thread Sir Cyrus
Just tried that. My config.h: http://pastebin.com/fgK61dub As a sidenote pwmt's jumanji browser handles downloading fine, so it doesn't seem to be a st/wget issue.

Re: [dev] st -e not working?

2011-05-12 Thread Connor Lane Smith
On 12 May 2011 23:34, Sir Cyrus wrote: > However I'm still having trouble downloading files in surf. I've tried > recompiling using "st" in place of "xterm" in config.def.h, as well as > creating a symbolic link from xterm to st, but neither seem to work. Line 17 in config.h should read: > "st -

Re: [dev] st -e not working?

2011-05-12 Thread Sir Cyrus
On Thu, May 12, 2011 at 11:15 PM, Josh Rickmar wrote: >It runs the given command in place of your shell. As soon as it quits, so >does st. Run "st -e cat" to try with a program that doesn't terminate >immediatelly. Thought that might have been it, and those seem to work (huzzah!) However I'm s

Re: [dev] st -e not working?

2011-05-12 Thread Connor Lane Smith
Hey, On 12 May 2011 23:11, Sir Cyrus wrote: > Using st 0.1.1 and the -e switch appears to not be working. It does work, but as soon as the command exits so does st. $ st -e python $ st -e wget example.net The former open st with a Python prompt; the latter downloads the URL and then exits. Th

Re: [dev] st -e not working?

2011-05-12 Thread Josh Rickmar
On Thu, May 12, 2011 at 11:11:10PM +0100, Sir Cyrus wrote: > Using st 0.1.1 and the -e switch appears to not be working. As test cases I > ran > st -e ls > st -e "ls" > st -e echo hello > st -e "echo hello" > and a few others, but nothing seemed to work. Has this not been > implemented yet? Or am

[dev] st -e not working?

2011-05-12 Thread Sir Cyrus
Using st 0.1.1 and the -e switch appears to not be working. As test cases I ran st -e ls st -e "ls" st -e echo hello st -e "echo hello" and a few others, but nothing seemed to work. Has this not been implemented yet? Or am I doing something wrong? This makes it impossible to download files using su