vitorpy's Dotfiles

Add keyboard layout configuration script

Created configure-keyboard.sh to set system-wide keyboard layout:
- Polish layout (default)
- US International with dead keys
- Alt+Shift to toggle between layouts

Added to bootstrap-fresh-install.sh for automatic setup.

+20
+4
private_dot_config/private_arch/executable_bootstrap-fresh-install.sh
··· 59 59 echo "==> Setting up Docker..." 60 60 ~/.config/arch/setup-docker.sh 61 61 62 + # Configure keyboard layout 63 + echo "==> Configuring keyboard layout..." 64 + ~/.config/arch/configure-keyboard.sh 65 + 62 66 # Enable ly display manager 63 67 echo "==> Enabling ly display manager..." 64 68 sudo systemctl enable ly.service
+16
private_dot_config/private_arch/executable_configure-keyboard.sh
··· 1 + #!/bin/bash 2 + # Configure system-wide keyboard layout 3 + # Sets Polish and US International (with dead keys) as system defaults 4 + 5 + set -e 6 + 7 + echo "==> Configuring keyboard layout..." 8 + echo " - Polish layout" 9 + echo " - US International with dead keys" 10 + echo " - Alt+Shift to toggle" 11 + 12 + sudo localectl set-x11-keymap pl,us pc105 ,intl grp:alt_shift_toggle 13 + 14 + echo "==> Keyboard configuration complete!" 15 + echo "" 16 + localectl status