Migrated the hyprland config to lua and fixed some broken scripts

This commit is contained in:
Gu://em_ 2026-08-06 12:14:57 +02:00
parent cb97bab237
commit ea230b4b06
22 changed files with 618 additions and 651 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,12 +17,13 @@ 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
hyprctl notify 3 3000 0 "Status file missing"
hyprctl notify 2 6000 0 "Use Mod + Ctrl + Space to change keyboard layout"
fr_to_en
en_to_fr
else
if [ $(cat "${status_file}") = "fr" ]; then
fr_to_en