From 53a0fb9689347e260f2df7737c439bb138a7a03e Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 4 Jun 2018 13:30:58 -0700 Subject: [PATCH] [Linux] Restore xmonad shell script --- dotfiles/lib/bin/xmonad | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 dotfiles/lib/bin/xmonad diff --git a/dotfiles/lib/bin/xmonad b/dotfiles/lib/bin/xmonad new file mode 100755 index 00000000..47e6a2c5 --- /dev/null +++ b/dotfiles/lib/bin/xmonad @@ -0,0 +1,10 @@ +#!/usr/bin/env zsh +# -*- mode:sh + +if command_exists "imalison-taffybar"; then + imalison-xmonad "$@" +else + # Move .lib/bin to the end of PATH so that this script is not called again + add_to_path "$HOME/.lib/bin" --after + xmonad "$@" +fi