summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-23 07:35:34 +0300
committerThomas Voss <mail@thomasvoss.com> 2023-08-23 07:35:34 +0300
commit43a5172f1877b3426d121d1fd8724be6734580a1 (patch)
treec4750233dcd5c8c521fde2b08c30804bd77ba29a /.local
parent22ac0b49b001eb0d4c3e0380d248d02a1f2dccf0 (diff)
osel: Eval arguments
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/osel2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/osel b/.local/bin/osel
index 7087dc3..885c048 100755
--- a/.local/bin/osel
+++ b/.local/bin/osel
@@ -2,4 +2,4 @@
: ${OSEL_GUI:=wofi -d}
: ${OSEL_TERM:=fzf}
-if [ -t 2 ]; then $OSEL_TERM; else $OSEL_GUI; fi
+if [ -t 2 ]; then eval $OSEL_TERM; else eval $OSEL_GUI; fi