commit da60d883c67389894730c0f1dac44514ef4229d9
parent b71771d949a4040938792ec1764beb7464176576
Author: regexghost <dev@regexghost.com>
Date: Sun, 2 Aug 2026 11:22:21 +0100
pkill recursive fix in .kshrc, muted icon removed space in lemonbar script
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dotfiles/.kshrc b/dotfiles/.kshrc
@@ -158,7 +158,7 @@ lsblk () {
}
pkill () {
- pkill "$@"
+ command pkill "$@"
[ "$?" == "0" ] || echo "Program not found"
}
diff --git a/panel-scripts/lemonbar-bar.sh b/panel-scripts/lemonbar-bar.sh
@@ -40,7 +40,7 @@ update_network_down () {
update_vol () {
if [ $(cat ~/.cache/muted) = "yes" ]; then
- vol="${muted_colour} ${COLOUR_RESET}"
+ vol="${muted_colour}${COLOUR_RESET}"
else
vol="${volume_colour} $(cat ~/.cache/volume)%%${COLOUR_RESET}"
fi