diff options
author | John Ankarstrom <john@ankarstrom.se> | 2021-06-29 21:43:55 +0200 |
---|---|---|
committer | John Ankarstrom <john@ankarstrom.se> | 2021-06-29 21:43:55 +0200 |
commit | 38f74ff88c0cd2e9361081b3cb7f11d7a7acdcd0 (patch) | |
tree | 8b9e0441e85f3dda4c983b1d9f1758b51f701c6d | |
parent | 47cd7c5f7ee77988689e6ab90eae5f920bb9ad8e (diff) | |
download | lbsd-38f74ff88c0cd2e9361081b3cb7f11d7a7acdcd0.tar.gz |
ROX: Update scripts to use new xtopen options
3 files changed, 3 insertions, 3 deletions
diff --git a/home/john/.config/rox.sourceforge.net/MIME-types/text b/home/john/.config/rox.sourceforge.net/MIME-types/text index 613c249..4442d98 100755 --- a/home/john/.config/rox.sourceforge.net/MIME-types/text +++ b/home/john/.config/rox.sourceforge.net/MIME-types/text @@ -1,3 +1,3 @@ #!/bin/sh cd "$(dirname "$1")" -exec xtopen vi "$(basename "$1")" +exec xtopen -i vi "$(basename "$1")" diff --git a/home/john/.config/rox.sourceforge.net/MIME-types/text_x-makefile b/home/john/.config/rox.sourceforge.net/MIME-types/text_x-makefile index eae4c0f..a6d514a 100755 --- a/home/john/.config/rox.sourceforge.net/MIME-types/text_x-makefile +++ b/home/john/.config/rox.sourceforge.net/MIME-types/text_x-makefile @@ -1,3 +1,3 @@ #!/bin/sh cd "$(dirname "$1")" -exec xtopen -K make +exec xtopen -p with-shell-on-error make diff --git a/home/john/.config/rox.sourceforge.net/SendTo/.application_pdf/wpdf b/home/john/.config/rox.sourceforge.net/SendTo/.application_pdf/wpdf index 8b20f63..3207995 100755 --- a/home/john/.config/rox.sourceforge.net/SendTo/.application_pdf/wpdf +++ b/home/john/.config/rox.sourceforge.net/SendTo/.application_pdf/wpdf @@ -1,3 +1,3 @@ #!/bin/sh cd "$(dirname "$1")" -exec xtopen -K wpdf "$(basename "$1")" +exec xtopen -p with-shell-on-error wpdf "$(basename "$1")" |