13 lines
281 B
Bash
13 lines
281 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
fly ()
|
||
|
{
|
||
|
nohup $@ < /dev/null > /dev/null 2>&1 &
|
||
|
echo $!
|
||
|
}
|
||
|
|
||
|
#echo $(fly /usr/bin/chromium --incognito --screen=1 $@)
|
||
|
#/usr/bin/chromium --incognito --screen=1 $@ &
|
||
|
/usr/bin/chromium --screen=1 --enable-logging --password-store=basic --v=1 $@ &
|
||
|
echo $!
|