Updated bootstrap to incorporate new install methods for modules without submodules
This commit is contained in:
parent
004c9bfd86
commit
aa0b843328
1 changed files with 18 additions and 6 deletions
|
@ -4,13 +4,25 @@
|
||||||
# be run from within $HOME (assuming this is the root of your dotfiles)
|
# be run from within $HOME (assuming this is the root of your dotfiles)
|
||||||
cd "$HOME"
|
cd "$HOME"
|
||||||
|
|
||||||
echo "Init submodules"
|
#echo "Init submodules"
|
||||||
yadm submodule update --recursive --init
|
#yadm submodule update --recursive --init
|
||||||
|
|
||||||
source /etc/os-release
|
echo "Install a few things:"
|
||||||
|
mkdir "$HOME/bin"
|
||||||
|
echo "+ ZIM"
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/zimfw/install/master/install.zsh | zsh
|
||||||
|
echo "+ TMux Plugin Manager"
|
||||||
|
mkdir -p "$HOME/.tmux/plugins"
|
||||||
|
git clone https://github.com/tmux-plugins/tpm "$HOME/.tmux/plugins/tpm"
|
||||||
|
echo "+ SpaceVim"
|
||||||
|
curl -sLF https://spacevim.org/install.sh | bash
|
||||||
|
|
||||||
if [[ "$ID" == "linuxmint" ]]; then
|
if [[ -f /etc/os-release ]];
|
||||||
gsettings set org.cinnamon.desktop.keybindings.wm activate-window-menu '[]'
|
source /etc/os-release
|
||||||
gsettings set org.cinnamon.desktop.keybindings.wm switch-group '[]'
|
|
||||||
|
if [[ "$ID" == "linuxmint" ]]; then
|
||||||
|
gsettings set org.cinnamon.desktop.keybindings.wm activate-window-menu '[]'
|
||||||
|
gsettings set org.cinnamon.desktop.keybindings.wm switch-group '[]'
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue