Updating update scripts

This commit is contained in:
blallo 2023-05-19 22:12:53 +02:00
parent ecbe93f3b3
commit 9f31eb8183
No known key found for this signature in database
GPG key ID: C530464EEDCF489A
4 changed files with 9 additions and 5 deletions

View file

@ -1,4 +1,5 @@
#!/usr/bin/env zsh
echo "=> Updating antidote"
! [[ -z $DEBUG ]] && set -x

View file

@ -1,5 +1,5 @@
#!/usr/bin/env zsh
echo "Updating fzf"
echo "=> Updating fzf"
currpath=$(realpath $PWD)
@ -16,4 +16,4 @@ if [ ! -d ~/.config/zsh ]; then
fi
cp ${currpath}/fzf.zsh ${HOME}/.config/zsh/
# vim: set ft=sh et sw=0 ts=2 sts=0:
# vim: set ft=zsh et sw=0 ts=2 sts=0:

View file

@ -1,7 +1,10 @@
#!/bin/sh
#!/usr/bin/env zsh
echo "=> Updating grml zsh config"
curl --fail \
-L \
--output /tmp/.zshrc.tty \
https://git.grml.org/f/grml-etc-core/etc/zsh/zshrc \
&& mv /tmp/.zshrc.tty .zshrc.tty
# vim: set ft=zsh et sw=0 ts=2 sts=0:

View file

@ -1,5 +1,5 @@
#!/usr/bin/env zsh
echo "Updating pipenv completion"
echo "=> Updating pipenv completion"
currpath=$(realpath $PWD)
@ -19,4 +19,4 @@ if [ ! -d ~/.config/zsh ]; then
fi
cp ${currpath}/compiled/pipenv.zsh ~/.config/zsh/pipenv.zsh
# vim: set ft=sh et sw=0 ts=2 sts=0:
# vim: set ft=zsh et sw=0 ts=2 sts=0: