You are not logged in.
I always start my firefox by
aoss firefox
Is there any good way? To modify /opt/mozilla/bin/firefox ?
Offline
as root or with sudo:
touch /usr/bin/firefox
and put the following into it:
#!/bin/sh
export MOZILLA_LAUNCHER=firefox
aoss /opt/mozilla/bin/firefox "$@"
then make it executable(as root or sudo):
chmod +x /usr/bin/firefox
Then you don't have to type aoss infront of firefox anymore each time you want to launch it.
This was taken from here btw: http://wiki.archlinux.org/index.php/All … nd_at_once
KISS = "It can scarcely be denied that the supreme goal of all theory is to make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience." - Albert Einstein
Offline
Thank you very much
Offline
only too happy to help
KISS = "It can scarcely be denied that the supreme goal of all theory is to make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience." - Albert Einstein
Offline
thx! I was looking for this
Offline