Ivan Malison b6148a9132
Revert "[taffybar] Use stack run instead of your own thing"
This reverts commit d626da4796250a288252b101f8e9f6176f7866df.
2018-05-31 17:26:41 -07:00

14 lines
282 B
Bash
Executable File

#!/usr/bin/env zsh
# -*- mode:sh
cd "$HOME/.config/taffybar"
stack install
if command_exists "imalison-taffybar"; then
imalison-taffybar "$@"
else
# Move .lib/bin to the end of PATH so that this script is not called again
add_to_path "$HOME/.lib/bin" --after
taffybar "$@"
fi