16 lines
455 B
Bash
Executable file
16 lines
455 B
Bash
Executable file
#!/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
|
|
|
|
source /etc/os-release
|
|
|
|
if [[ "$ID" == "linuxmint" ]]; then
|
|
dconf write /org/cinnamon/desktop/keybindings/wm/activate-window-menu "'[]'"
|
|
dconf write /org/cinnamon/desktop/keybindings/wm/switch-group "'[]'"
|
|
fi
|
|
|