From ed779a4bc67e7506ba5521ac1d2308aaedeb89de Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Sat, 1 Jul 2023 20:58:49 +0530 Subject: .scripts: Adding order and rsyncfon script --- .scripts/togglecaps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.scripts/togglecaps') diff --git a/.scripts/togglecaps b/.scripts/togglecaps index 09dd90c..b3c1b48 100755 --- a/.scripts/togglecaps +++ b/.scripts/togglecaps @@ -5,11 +5,11 @@ 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 echo "$line1" | grep -qE "^\s*#"; 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 +elif echo "$line1" | grep -qE "^\s*#"; 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" -- cgit v1.2.3