diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-01-29 01:37:40 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-01-29 01:37:40 -0500 |
commit | 1e77007556e623a63478a18790098c510b9cbbd9 (patch) | |
tree | 3d8974560bf4da46cd9ec2ac9c9be21f881b14ab /.local/bin | |
parent | c007a61ad7e885f7f3dadd05bae555e577ce27c9 (diff) |
.local/bin/x-*: exec, not eval. I'm smert
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/x-pdf | 2 | ||||
-rwxr-xr-x | .local/bin/x-terminal-emulator | 2 | ||||
-rwxr-xr-x | .local/bin/x-www-browser | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/x-pdf b/.local/bin/x-pdf index cfaa258..8f9ef60 100755 --- a/.local/bin/x-pdf +++ b/.local/bin/x-pdf @@ -1,3 +1,3 @@ #!/bin/sh -eval $(pick atril zathura mupdf okular evince xpdf 'emacsclient -c') "$@" +exec $(pick atril zathura mupdf okular evince xpdf 'emacsclient -c') "$@" diff --git a/.local/bin/x-terminal-emulator b/.local/bin/x-terminal-emulator index 075dda5..2e158cf 100755 --- a/.local/bin/x-terminal-emulator +++ b/.local/bin/x-terminal-emulator @@ -1,3 +1,3 @@ #!/bin/sh -eval $(pick 'emacsterm -c' 'urxvt' 'xterm' 'gnome-terminal') "$@" +exec $(pick 'emacsterm -c' 'urxvt' 'xterm' 'gnome-terminal') "$@" diff --git a/.local/bin/x-www-browser b/.local/bin/x-www-browser index 945dcfc..b0b05e0 100755 --- a/.local/bin/x-www-browser +++ b/.local/bin/x-www-browser @@ -1,3 +1,3 @@ #!/bin/sh -eval $(pick -s iceweasel icecat firefox conkeror) "$@" +exec $(pick -s iceweasel icecat firefox conkeror) "$@" |