diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-12-11 17:50:04 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-12-11 17:50:04 +0000 |
commit | 33f31884bca99a3fad32c0e57d7eae8188559d82 (patch) | |
tree | 00acb1916c46b53a4ccb8de9afb4e2806fc6b8b8 /.config/eww/scripts | |
parent | 780a6e2c65a308eb5afb6bf1a426e0398dee42bd (diff) |
swapped /bin/bash for /usr/bin/env bash
Diffstat (limited to '.config/eww/scripts')
-rwxr-xr-x | .config/eww/scripts/keyboardlayout.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/eww/scripts/keyboardlayout.sh b/.config/eww/scripts/keyboardlayout.sh index aa98833..50acfdd 100755 --- a/.config/eww/scripts/keyboardlayout.sh +++ b/.config/eww/scripts/keyboardlayout.sh @@ -1,8 +1,8 @@ -#!/bin/bash +#!/usr/bin/env bash # Get long name # echo "$(hyprctl devices | grep -A 2 "at-translated-set-2-keyboard" | awk 'NR==3 {print $3" "$4}')" # Get short name -echo "$(hyprctl devices | grep -A 2 "at-translated-set-2-keyboard" | awk 'NR==3 {print $4}'| grep -Po '(?<=\().*(?=\))' )" +# echo "$(hyprctl devices | grep -A 2 "at-translated-set-2-keyboard" | awk 'NR==3 {print $4}'| grep -Po '(?<=\().*(?=\))' )" |