You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
export CONFIG_DIR=".config"
|
|
|
|
if [ ! -e /tmp/Links.xid ]
|
|
then /usr/bin/tabbed -t '#000000' -T '#FFFFFF' -u '#C0C0C0' -U '#000000' -c /usr/bin/links "$@" -g -w > /tmp/Links.xid ; rm /tmp/Links.xid
|
|
else /usr/bin/links "$@" -g -w "$(cat /tmp/Links.xid)"
|
|
fi
|