omarchy-refresh-hyprland overwrites input.conf with the default template, which has kb_layout and kb_variant commented out. Non-US users lose their keyboard layout with no obvious recovery path. Re-run detect-keyboard-layout.sh after the refresh so the system layout from /etc/vconsole.conf is re-applied, matching what the initial install does. Closes #2507
11 lines
363 B
Bash
Executable File
11 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Overwrite all the user configs in ~/.config/hypr with the Omarchy defaults.
|
|
|
|
omarchy-refresh-config hypr/autostart.conf
|
|
omarchy-refresh-config hypr/bindings.conf
|
|
omarchy-refresh-config hypr/input.conf
|
|
omarchy-refresh-config hypr/looknfeel.conf
|
|
omarchy-refresh-config hypr/hyprland.conf
|
|
bash "$OMARCHY_PATH/install/config/detect-keyboard-layout.sh"
|