From daddd6b4db510659ef4241cbbb9dfbfa44129643 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Sat, 12 Sep 2026 16:16:33 +0200 Subject: [PATCH] keyboard modifications --- bin/.bin/switchkblayout | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/.bin/switchkblayout b/bin/.bin/switchkblayout index 6b2866a..3bbe12a 100755 --- a/bin/.bin/switchkblayout +++ b/bin/.bin/switchkblayout @@ -2,16 +2,15 @@ key=`setxkbmap -query | grep "layout\|variant" | awk '{print $2}' | xargs` -if [[ $key = "fr" ]]; then +if [[ $key = "be" ]]; then setxkbmap us elif [[ $key = "us" ]]; then - setxkbmap us -variant dvorak + setxkbmap us -variant dvp elif [[ $key = "us dvorak" ]]; then - setxkbmap fr + setxkbmap be else setxkbmap fr fi key=`setxkbmap -query | grep "layout\|variant" | awk '{print $2}' | xargs` notify-send "Keyboard Layout: $key" -