#!/usr/bin/env bash # Set zsh as the default shell if [ "$SHELL" != "$(command -v zsh)" ]; then echo "Setting zsh as the default shell..." chsh -s "$(command -v zsh)" fi # Set German nodeadkeys layout for TTY/console if command -v localectl >/dev/null 2>&1; then echo "Setting TTY keyboard layout to de-latin1-nodeadkeys..." sudo localectl set-keymap de-latin1-nodeadkeys fi