Skip to content

Commit

Permalink
Fix keyboard copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Jendker committed Aug 12, 2024
1 parent 3f7afe6 commit c438e7f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions macos/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ ROOT_DIR=$(dirname "$SCRIPT_DIR")

$ROOT_DIR/set_up_common.sh

mkdir -p "$HOME/Library/Keyboard Layouts/"
cp "/Users/jedrzej/Library/Mobile Documents/com~apple~CloudDocs/Random/Keyboard Layouts/Polish-German.bundle" "$HOME/Library/Keyboard Layouts/"
echo "Reboot and add the Polish-German keyboard layout from Polish keyboards"
KEYBOARD_PATH="$HOME/Library/Keyboard Layouts/Polish-German.bundle"
if [ -e "/Users/jedrzej/Library/Mobile Documents/com~apple~CloudDocs/Random/Keyboard Layouts/Polish-German.bundle" ] && [ ! -e $KEYBOARD_PATH ]; then
cp "/Users/jedrzej/Library/Mobile Documents/com~apple~CloudDocs/Random/Keyboard Layouts/Polish-German.bundle" "$KEYBOARD_PATH"
echo "Reboot and add the Polish-German keyboard layout from Polish keyboards"
fi
cp ROOT_DIR/dotfiles_private/fonts/* ~/Library/Fonts/

SSH_CONFIG_PATH=/etc/ssh/sshd_config.d/100-macos.conf
Expand Down

0 comments on commit c438e7f

Please sign in to comment.