12 lines
363 B
Bash
Executable file
12 lines
363 B
Bash
Executable file
#!/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 $@ &
|
|
fly flatpak run com.github.Eloston.UngoogledChromium --screen=1 --disk-cache-dir=/dev/null --disk-cache-size=1 --enable-logging --password-store=basic --v=1 $@ &
|
|
echo $!
|