From 1592e3a3c691453abd63a0726b3c97aa5d803fad Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Sun, 8 Jun 2025 19:51:37 -0500 Subject: [PATCH] Fixed keymap install asking for inversion. --- install-keyboard-map.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-keyboard-map.sh b/install-keyboard-map.sh index 7f7016b..59e5306 100755 --- a/install-keyboard-map.sh +++ b/install-keyboard-map.sh @@ -119,7 +119,7 @@ else printf "By default, the top row keys will do their special function (brightness, volume, browser control, etc).\n" printf "Holding the search key will make the top row keys act like fn keys (f1, f2, f3, etc).\n" printf "Would you like to invert this? (y/N) " - read -r INVERT +# read -r INVERT if [ "$distro" == "nixos" ] && ! which python3 &>/dev/null; then [[ $INVERT =~ ^[Yy]$ ]] && nix-shell -p python3 --run "python3 cros-keyboard-map.py -i" || nix-shell -p python3 --run "python3 cros-keyboard-map.py"