I have a bash script and I want to use a command in it, that I defined in my config.fish
like this:
alias setbg='feh --bg-fill'
However when I use the command in my bash script, I get:
setbg: command not found
How do I make fish aliases visible to bash scripts?