9 lines
265 B
Bash
Executable File
9 lines
265 B
Bash
Executable File
#!/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
|