diff --git a/TARGETS.sh b/TARGETS.sh index 320e22f..b38b2d9 100644 --- a/TARGETS.sh +++ b/TARGETS.sh @@ -4,6 +4,7 @@ less:.lesskey .infokey tmux:.config/tmux .tmux .config/systemd/user/tmux.service .local/bin/tmux_start_session.sh .local/bin/tmux_list_sessions.sh .local/bin/tmux_attach_session.sh .local/bin/tmux_kill_sessions.sh .local/bin/tmux_start_projects.sh t: note: +psw: zsh:.config/zsh .zshenv .zshenv.d .inputrc %colors alacritty:.config/alacritty nvim:.config/nvim .editorconfig .editrc .local/bin/vim_askpass_helper diff --git a/install-hooks/note/pre-install b/install-hooks/note/pre-install index 5dedb08..d018016 100755 --- a/install-hooks/note/pre-install +++ b/install-hooks/note/pre-install @@ -7,7 +7,7 @@ readonly tempdir ( cd "${tempdir}" - git clone https://github.com/thek4n/note.git . + git clone https://gitea.thek4n.ru/thek4n/note.git . sudo PREFIX=/usr make install ) diff --git a/install-hooks/psw/pre-install b/install-hooks/psw/pre-install new file mode 100755 index 0000000..772eb03 --- /dev/null +++ b/install-hooks/psw/pre-install @@ -0,0 +1,14 @@ +#!/bin/sh + +set -eu + +tempdir="$(mktemp -d)" +readonly tempdir + +( + cd "${tempdir}" + git clone https://gitea.thek4n.ru/thek4n/psw.git . + sudo PREFIX=/usr make install +) + +rm -rf "${tempdir}" diff --git a/install-hooks/t/pre-install b/install-hooks/t/pre-install index 9a3d361..b3f2e88 100755 --- a/install-hooks/t/pre-install +++ b/install-hooks/t/pre-install @@ -1,3 +1,3 @@ #!/bin/sh -GOPROXY=direct go install github.com/thek4n/t/cmd/t@latest \ No newline at end of file +GOPROXY=direct go install github.com/thek4n/t/cmd/t@latest