From 941ed8e8edc370fba5284cb978eba7dabb4bd30c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 23 Aug 2017 12:16:21 -0700 Subject: [PATCH] [taffybar] Add taffybar shell script --- dotfiles/lib/bin/taffybar | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 dotfiles/lib/bin/taffybar diff --git a/dotfiles/lib/bin/taffybar b/dotfiles/lib/bin/taffybar new file mode 100755 index 00000000..a12f3802 --- /dev/null +++ b/dotfiles/lib/bin/taffybar @@ -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