diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-15 10:23:13 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-15 10:23:13 +0000 |
commit | 9e890aa11bda0d9610f54c69730bbb410e9f1dd5 (patch) | |
tree | 5e5b0cab1642a53f931c42642f03df675265a3ca /lynx | |
parent | 44a97738c845b725603f56085d0504509f101abf (diff) |
Updates various tools config to match Arch config
Diffstat (limited to 'lynx')
-rwxr-xr-x | lynx/lynx | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,7 +2,8 @@ # see ../lynx/README.md for configs -lynxpath=/usr/local/bin/lynx +lynxpath=/usr/bin/lynx +echo "lynxpath is $lynxpath" if [ -e "$HOME/.config/lynx/lynx.cfg" ];then export LYNX_CFG="$HOME/.config/lynx/lynx.cfg" @@ -13,7 +14,7 @@ if [ -e "$HOME/.config/lynx/lynx.lss" ];then fi if [ ! -x "$lynxpath" ]; then - echo "Doesn't look like lynx is installed." + echo "lynxpath is set to $lynxpath but it doesn't look like lynx is installed." exit 1 fi |