diff options
Diffstat (limited to '.scripts/togglecaps')
-rwxr-xr-x | .scripts/togglecaps | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.scripts/togglecaps b/.scripts/togglecaps new file mode 100755 index 0000000..09dd90c --- /dev/null +++ b/.scripts/togglecaps @@ -0,0 +1,16 @@ +#!/bin/sh + +hyprland_cfg="$HOME/.config/hypr/hyprland.conf" + +line1=$(grep "kb_options" "$hyprland_cfg" | head -n 1) +line2=$(grep "kb_options" "$hyprland_cfg" | tail -n 1) + +if [ "${line1:0:1}" = "#" ]; then + # If first line is commented, uncomment it and comment the second line + sed -i 's/^#\s*kb_options=caps:escape/kb_options=caps:escape/' "$hyprland_cfg" + sed -i 's/^kb_options=ctrl:nocaps/# kb_options=ctrl:nocaps/' "$hyprland_cfg" +elif [ "${line2:0:1}" = "#" ]; then + # If second line is commented, uncomment it and comment the first line + sed -i 's/^#\s*kb_options=ctrl:nocaps/kb_options=ctrl:nocaps/' "$hyprland_cfg" + sed -i 's/^kb_options=caps:escape/# kb_options=caps:escape/' "$hyprland_cfg" +fi |