You are not logged in.
Using pidgin and wanted to autostart it upon login.
Should I add pidgin or pidgin & or pidgin && in autostart
Is there a real difference?
Offline
By using pidgin everything will wait for pidgin to finish, aka close.
By using pidgin & it will execute pidgin, and then move along. No stall.
And I'm just not sure about the last one.
So you want to use pidgin & for autostarting.
All in an effort to learn...
Delves deeper into code...
Offline
You almost always want to use the & after running any program, in a script or in the terminal.
Offline
By using pidgin everything will wait for pidgin to finish, aka close.
By using pidgin & it will execute pidgin, and then move along. No stall.
And I'm just not sure about the last one.So you want to use pidgin & for autostarting.
Got that, thanks.
Just tested and wanted to share this.
pidgin in autostart.sh and upon login, my keyboard is not working, pagar is partially missing 
pidgin & in autostart.sh , so far so good 
Offline
pidgin in autostart.sh and upon login, my keyboard is not working, pagar is partially missing
When that happens, you just need to kill pidgin, and then all will be restored (it happened to me w/ wine
)
All in an effort to learn...
Delves deeper into code...
Offline
By using pidgin everything will wait for pidgin to finish, aka close.
By using pidgin & it will execute pidgin, and then move along. No stall.
And I'm just not sure about the last one.So you want to use pidgin & for autostarting.
using && is conditional..
the script will only continue if command before was successful.. example:
do_this && do_that --> if bash is unable to execute "do_this" then "do_that" is not executed either
Offline
using && is conditional..
the script will only continue if command before was successful.. example:
do_this && do_that --> if bash is unable to execute "do_this" then "do_that" is not executed either
Aaah! Thanks papparonny 
Offline
oooh, cool.
I didn't know that 
All in an effort to learn...
Delves deeper into code...
Offline
papparonny, thanks for the clarification.:D
Offline
Offline
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.