From ab60bbbf1b19bae28f7302d2299ca14dd64a7bc5 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Sun, 25 Jun 2023 12:53:26 +0530 Subject: hypr+script: togglecaps sh to avoid emacspinky --- .scripts/togglecaps | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .scripts/togglecaps (limited to '.scripts') 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 -- cgit v1.2.3