This commit is contained in:
Daniel Flanagan 2021-11-29 08:25:13 -06:00
parent df9e5ac077
commit 39a63ad836
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
2 changed files with 3 additions and 1 deletions

View file

@ -6,5 +6,5 @@ command -v fish >/dev/null 2>&1 && grep fish /etc/shells >/dev/null 2>&1 && {
echo " You may want to run 'chsh' and set your shell to $(grep fish /etc/shells | head -n1)'."
echo " Once that's done, simply run 'fish'."
echo " You can also try fish temporarily by running 'fish'. No 'chsh' commitment required."
echo " If you're in bash for intentionally for some reason, then ignore this message."
echo " If you're in bash intentionally for some reason, then ignore this message."
}

View file

@ -13,5 +13,7 @@ app="$(
grep "\S" | \
fzf
)"
# if no app is selected, just exit
test -z "$app" && exit 1
echo "$app $(date +%s)" >> "$LAUNCHER_HISTORY_FILE"
echo "$app"