From 55ddffcb0040c0eec5502cebdbb2280716868831 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Mon, 29 Aug 2022 17:54:22 -0400 Subject: [PATCH] ENH include a few nice scripts on headless configurations --- .chezmoiignore | 10 +++++++++- dot_bin/install_mamba | 17 ----------------- 2 files changed, 9 insertions(+), 18 deletions(-) delete mode 100644 dot_bin/install_mamba diff --git a/.chezmoiignore b/.chezmoiignore index 9607459..3d74cd6 100644 --- a/.chezmoiignore +++ b/.chezmoiignore @@ -1,5 +1,13 @@ {{- if not .desktop }} -.bin +.bin/* + +!.bin/bootstrap_mamba +!.bin/compress_pdf +!.bin/efi-update +!.bin/gpg-recv-http +!.bin/ln-replace +!.bin/ssh-def-keygen +!.bin/tmuxctl .config/* !.config/gnupg diff --git a/dot_bin/install_mamba b/dot_bin/install_mamba deleted file mode 100644 index 579c5de..0000000 --- a/dot_bin/install_mamba +++ /dev/null @@ -1,17 +0,0 @@ -#! /bin/bash - -# locally install mamba for this user - -bin_path=~/.local/bin/mamba_installer.sh -mamba_root=$XDG_DATA_HOME/mambaforge - -# this needs to be present or else the installer will fail -mkdir -p $XDG_DATA_HOME/conda/{pkgs,envs} - -# TODO configure version -#curl -L -O "https://github.com/conda-forge/miniforge/releases/download/4.13.0-1/Mambaforge-$(uname)-$(uname -m).sh" -curl -L -o "$bin_path" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh" - -bash "$bin_path" -p "$mamba_root" -b -f - -rm -f "$bin_path"