summaryrefslogtreecommitdiff
path: root/.local/bin/osel
blob: 7087dc385e8f1f70307f051b18c7746c433b1552 (plain) (blame)
1
2
3
4
5
#!/bin/sh

: ${OSEL_GUI:=wofi -d}
: ${OSEL_TERM:=fzf}
if [ -t 2 ]; then $OSEL_TERM; else $OSEL_GUI; fi