diff options
-rw-r--r-- | base.yaml | 2 | ||||
-rwxr-xr-x | base/dotf | 2 | ||||
-rw-r--r-- | base/zsh/aliases.zsh | 2 | ||||
-rwxr-xr-x | install | 2 | ||||
-rw-r--r-- | termux.yaml | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -48,4 +48,4 @@ - shell: - grep "include ~/.task/main.rc" ~/.taskrc || echo "include ~/.task/main.rc" >>~/.taskrc - - touch ~/.hushlogin + - touch ~/.hushlogin || true @@ -2,4 +2,4 @@ cd $HOME/.dotfiles git pull -./install `cat .dot.args` +bash install `cat .dot.args` diff --git a/base/zsh/aliases.zsh b/base/zsh/aliases.zsh index 9613304..43a75bc 100644 --- a/base/zsh/aliases.zsh +++ b/base/zsh/aliases.zsh @@ -49,6 +49,6 @@ alias poweroff="systemctl poweroff" # TASKWARRIOR export TASKBIN="$(builtin which task)" -alias task="taskw" +alias task="bash taskw" alias whoaminot="echo adam" @@ -14,7 +14,7 @@ git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive git submodule update --init --recursive "${DOTBOT_DIR}" for conf in ${DEFAULT_CONFIG_PREFIX} ${@}; do - "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${conf}${CONFIG_SUFFIX}" + bash "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${conf}${CONFIG_SUFFIX}" done echo ${@} > .dot.args diff --git a/termux.yaml b/termux.yaml index 433907e..708ce38 100644 --- a/termux.yaml +++ b/termux.yaml @@ -11,4 +11,4 @@ ~/.termux/termux.properties: termux/termux.properties - shell: - - chsh -s zsh + - chsh -s zsh || true |