diff options
author | Alexis Hovorka <[email protected]> | 2021-01-02 19:16:31 -0700 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2021-01-02 19:16:31 -0700 |
commit | 535603b8d82e349a010b2f5532198a04d8b9f14a (patch) | |
tree | 497953c51e80c074a6d28e3a147c8f9a40d108b0 | |
parent | adacf312afaaf1d028d7004b2be347ebe570ce7f (diff) |
[fix] Make a few little tweaks to keep Termux happy
-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 |