[taffybar] Add taffybar shell script

This commit is contained in:
Ivan Malison 2017-08-23 12:16:21 -07:00
parent be95a1e609
commit 941ed8e8ed
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

10
dotfiles/lib/bin/taffybar Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env zsh
# -*- mode:sh
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