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

View file

@ -1,22 +1,35 @@
#!/usr/bin/env sh
# From Hyprland documentation - https://wiki.hyprland.org/0.41.2/Configuring/Uncommon-tips--tricks/#toggle-animationsbluretc-hotkey
# Disables animations accros the desktop (as well as some other tweaks)
# Similar to game mode but with the goal to cure motion sickness
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
if [ "$HYPRGAMEMODE" = 1 ] ; then
hyprctl --batch "\
keyword animations:enabled 0;\
keyword decoration:drop_shadow 0;\
keyword decoration:blur:enabled 0;\
keyword general:gaps_in 0;\
keyword general:gaps_out 0;\
keyword general:border_size 1;\
keyword decoration:rounding 0"
killall waybar
hyprctl notify 1 2000 0 "Enabled game mode"
if [[ "$(hyprctl getoption animations:enabled)" =~ "bool: true" ]] ; then
hyprctl eval "
hl.config({
general = {
gaps_in = 0,
gaps_out = 0,
border_size = 0,
},
decoration = {
rounding = 0,
drop_shadow = false,
blur = {
enabled = false,
},
},
animations = {
enabled = false,
},
})
"
hyprctl notify 1 2000 0 "Enabled Sharp mode"
exit
fi
hyprctl reload
~/.config/hypr/scripts/restore-waybar.sh
hyprctl notify 1 2000 0 "Disabled game mode"
# ~/.config/hypr/scripts/restore-waybar.sh
hyprctl notify 1 2000 0 "Disabled Sharp mode"

View file

@ -1,17 +1,26 @@
#!/usr/bin/env sh
# Disables animations accros the desktop (as well as some other tweaks)
# Similar to game mode but with the goal to enhance productivity
# From Hyprland documentation - https://wiki.hyprland.org/0.41.2/Configuring/Uncommon-tips--tricks/#toggle-animationsbluretc-hotkey
# Similar to game mode but with the goal to cure motion sickness
if [[ "$(hyprctl getoption animations:enabled)" =~ "bool: true" ]] ; then
hyprctl eval "
hl.config({
general = {
gaps_in = 0,
gaps_out = 0,
border_size = 0,
},
decoration = {
rounding = 0,
},
animations = {
enabled = false,
},
})
"
HYPRSHARPMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
if [ "$HYPRSHARPMODE" = 1 ] ; then
hyprctl --batch "\
keyword animations:enabled 0;\
keyword general:gaps_in 0;\
keyword general:gaps_out 0;\
keyword general:border_size 1;\
keyword decoration:rounding 0"
hyprctl notify 1 2000 0 "Enabled Sharp mode"
exit
fi