Added missing changes from last commit, style changes inside hyprland config files

This commit is contained in:
Gu://em_ 2026-08-04 12:56:31 +02:00
parent d4a489a52c
commit da39b8b8e0
3 changed files with 20 additions and 26 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
status_file="$HOME/.config/hypr/status/kb_layout"
hyprland_cfg_file="$HOME/.config/hypr/hyprland.conf"
hyprland_cfg_file="$HOME/.config/hypr/hyprland.lua"
fr_to_en() {
@ -9,7 +9,7 @@ fr_to_en() {
hyprctl notify 1 2000 0 "Keyboard set to QWERTY"
sed -i 's/kb_layouts\/fr/kb_layouts\/us/g' "$hyprland_cfg_file"
sed -i 's/kb_layouts.fr/kb_layouts.us/g' "$hyprland_cfg_file"
}
en_to_fr() {
@ -17,7 +17,7 @@ en_to_fr() {
hyprctl notify 1 2000 0 "Keyboard set to AZERTY"
sed -i 's/kb_layouts\/us/kb_layouts\/fr/g' "$hyprland_cfg_file"
sed -i 's/kb_layouts\.us/kb_layouts\.fr/g' "$hyprland_cfg_file"
}
if ! [ -f "${status_file}" ]; then
@ -30,4 +30,4 @@ else
elif [ $(cat "${status_file}") = "en" ]; then
en_to_fr
fi
fi
fi