From ad8ab0648648319b289f88fbbd14312d941c12fd Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Sat, 11 Nov 2023 11:17:50 +0100 Subject: [PATCH] Updates --- .install/backup.sh | 1 - .install/setup.sh | 4 ++-- hypr/conf/keyboard.conf | 2 +- qtile/conf/keyboard.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.install/backup.sh b/.install/backup.sh index 55e4b0b..4e5c6d3 100755 --- a/.install/backup.sh +++ b/.install/backup.sh @@ -21,7 +21,6 @@ EOF read -p "Do you want to proceed? (Yy/Nn): " yn case $yn in [Yy]* ) - echo "-> Preparing dotfiles" if [ ! -d ~/dotfiles-versions ]; then mkdir ~/dotfiles-versions fi diff --git a/.install/setup.sh b/.install/setup.sh index ad31e45..698167f 100644 --- a/.install/setup.sh +++ b/.install/setup.sh @@ -20,11 +20,11 @@ while true; do if [ -z "$keyboard" ]; then keyboard="us" fi - SEARCH="kb_layout = de" + SEARCH="kb_layout = us" REPLACE="kb_layout = $keyboard" sed -i "s/$SEARCH/$REPLACE/g" ~/dotfiles-versions/$version/hypr/conf/keyboard.conf - SEARCH="keyboard_layout = \"de\"" + SEARCH="keyboard_layout = \"us\"" REPLACE="keyboard_layout = \"$keyboard\"" sed -i "s/$SEARCH/$REPLACE/g" ~/dotfiles-versions/$version/qtile/conf/keyboard.py break;; diff --git a/hypr/conf/keyboard.conf b/hypr/conf/keyboard.conf index d0c10d4..73114a4 100644 --- a/hypr/conf/keyboard.conf +++ b/hypr/conf/keyboard.conf @@ -2,7 +2,7 @@ # Keyboard Layout # ----------------------------------------------------- input { - kb_layout = de + kb_layout = us # kb_layout = us follow_mouse = 1 touchpad { diff --git a/qtile/conf/keyboard.py b/qtile/conf/keyboard.py index d454a1e..c06875e 100644 --- a/qtile/conf/keyboard.py +++ b/qtile/conf/keyboard.py @@ -1,3 +1,3 @@ # Setup global keyboard layout here -keyboard_layout = "de" +keyboard_layout = "us"