2018-12-22 20:17:54 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Because Git submodule commands cannot operate without a work tree, they must
|
|
|
|
# be run from within $HOME (assuming this is the root of your dotfiles)
|
|
|
|
cd "$HOME"
|
|
|
|
|
|
|
|
echo "Init submodules"
|
|
|
|
yadm submodule update --recursive --init
|
|
|
|
|
2019-01-02 07:06:38 -05:00
|
|
|
source /etc/os-release
|
|
|
|
|
|
|
|
if [[ "$ID" == "linuxmint" ]]; then
|
2019-01-02 07:09:54 -05:00
|
|
|
dconf write /org/cinnamon/desktop/keybindings/wm/activate-window-menu "'[]'"
|
|
|
|
dconf write /org/cinnamon/desktop/keybindings/wm/switch-group "'[]'"
|
2019-01-02 07:06:38 -05:00
|
|
|
fi
|
|
|
|
|