diff --git a/bootstrap.sh b/bootstrap.sh index 912dd09..1c348f5 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -189,6 +189,12 @@ install_dotfiles() { info "Done!" } +select_keymap() { + info "Select a keymap:" + map="$(find "${user_home}/.local/share/xkb/compiled" -type f -printf "%f\n" | fzf)" + ln -s "$map" "${user_home}/.local/share/xkb/compiled/default" +} + enable_services() { tput sc info "Installing user service service..." @@ -235,6 +241,7 @@ create_directories "${SCRIPT_DIR}/directories.txt" emphasize "-- Installing Dotfiles --" install_dotfiles +select_keymap emphasize "-- Enabling Services --" enable_services "${SCRIPT_DIR}/services.txt"