From 535603b8d82e349a010b2f5532198a04d8b9f14a Mon Sep 17 00:00:00 2001 From: Alexis Hovorka Date: Sat, 2 Jan 2021 19:16:31 -0700 Subject: [fix] Make a few little tweaks to keep Termux happy --- base.yaml | 2 +- base/dotf | 2 +- base/zsh/aliases.zsh | 2 +- install | 2 +- termux.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base.yaml b/base.yaml index 859d3f6..339c581 100644 --- a/base.yaml +++ b/base.yaml @@ -48,4 +48,4 @@ - shell: - grep "include ~/.task/main.rc" ~/.taskrc || echo "include ~/.task/main.rc" >>~/.taskrc - - touch ~/.hushlogin + - touch ~/.hushlogin || true diff --git a/base/dotf b/base/dotf index c491cda..21ece92 100755 --- a/base/dotf +++ b/base/dotf @@ -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" diff --git a/install b/install index 0c9e990..d1c4388 100755 --- a/install +++ b/install @@ -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 -- cgit v1.2.3-54-g00ecf