summaryrefslogtreecommitdiff
path: root/ar/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.local/bin')
-rwxr-xr-xar/.local/bin/fzffiles4
-rwxr-xr-xar/.local/bin/opensessions2
-rwxr-xr-xar/.local/bin/statusbar/sb-cpu2
-rwxr-xr-xar/.local/bin/statusbar/sb-internet1
-rwxr-xr-xar/.local/bin/statusbar/sb-memory5
-rwxr-xr-xar/.local/bin/statusbar/sb-price6
6 files changed, 13 insertions, 7 deletions
diff --git a/ar/.local/bin/fzffiles b/ar/.local/bin/fzffiles
index 9f5cd90..64c7a6d 100755
--- a/ar/.local/bin/fzffiles
+++ b/ar/.local/bin/fzffiles
@@ -11,7 +11,7 @@ IFS='
files=$(fzf-tmux \
--header "^a pwd ^b public ^d .dotfiles ^f configs ^g git ^h home ^k desktop ^r scripts ^s suckless ^u staged files ^v private ^/ help" \
--preview "selection={};
- clean=\$(printf '%s' \"\$selection\" | sed -e 's/^📄 //' -e 's/^✏️ //' -e 's/^✅ //' -e 's/^❌ //' -e 's/^🔀 //' -e 's/^❓ //');
+ clean=\$(printf '%s' \"\$selection\" | sed -e 's/^📄 //' -e 's/^✏ //' -e 's/^✅ //' -e 's/^❌ //' -e 's/^🔀 //' -e 's/^❓ //');
[ -z \"\$clean\" ] && { echo 'No selection'; exit 0; }
target=\$(readlink -f \"\$clean\" 2>/dev/null || printf '%s' \"\$clean\");
if [ -z \"\$target\" ]; then
@@ -65,7 +65,7 @@ files=$(fzf-tmux \
else if (staged == \"!\" && unstaged == \"!\") icon=\"❌\";
else if (staged != \" \" && staged != \"?\" && unstaged != \" \" && unstaged != \"?\") icon=\"🔀\";
else if (staged != \" \" && staged != \"?\") icon=\"✅\";
- else if (unstaged != \" \") icon=\"✏️\";
+ else if (unstaged != \" \") icon=\"✏\";
else icon=\"❓\";
print icon \" \" root \"/\" file
}'; else echo 'This is not a git repository.'; fi)" \
diff --git a/ar/.local/bin/opensessions b/ar/.local/bin/opensessions
index d16f42f..e05e68a 100755
--- a/ar/.local/bin/opensessions
+++ b/ar/.local/bin/opensessions
@@ -9,7 +9,7 @@ dirs=$(echo "$dirs" | tr -s ' ' '\n' | sed '/^$/d')
# function to clean and create a valid session name
get_session_name() {
- basename "$1" | sed 's/[^a-zA-Z0-9]/_/g'
+ basename "$1" | sed 's/[^a-zA-Z0-9-]/_/g'
}
set -- $dirs
diff --git a/ar/.local/bin/statusbar/sb-cpu b/ar/.local/bin/statusbar/sb-cpu
index 0cb6f4f..753542f 100755
--- a/ar/.local/bin/statusbar/sb-cpu
+++ b/ar/.local/bin/statusbar/sb-cpu
@@ -3,7 +3,7 @@
case $BLOCK_BUTTON in
1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd,%cpu | awk '{cmd[$1]+=$2} END {for (i in cmd) print i, cmd[i]}' | sort -nrk2 | head)\\n(100% per core)" ;;
2) setsid -f "$TERMINAL" -e htop ;;
-3) notify-send "🖥 CPU module " "\- Shows CPU temperature
+3) notify-send "🧁 CPU module " "\- Shows CPU temperature
- Left click to show intensive processes
- Middle click to open htop" ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
diff --git a/ar/.local/bin/statusbar/sb-internet b/ar/.local/bin/statusbar/sb-internet
index 4dfb605..eeab61a 100755
--- a/ar/.local/bin/statusbar/sb-internet
+++ b/ar/.local/bin/statusbar/sb-internet
@@ -46,6 +46,7 @@ case $BLOCK_BUTTON in
pkill -RTMIN+6 dwmblocks
;;
3) notify-send "🌐 Internet module" "\- Left click to connect
+- Middle click to toggle wifi
❌: wifi disabled
📡: no wifi connection
🛜: wifi connection with quality
diff --git a/ar/.local/bin/statusbar/sb-memory b/ar/.local/bin/statusbar/sb-memory
index 3c9dd03..3b71f3c 100755
--- a/ar/.local/bin/statusbar/sb-memory
+++ b/ar/.local/bin/statusbar/sb-memory
@@ -3,9 +3,10 @@
case $BLOCK_BUTTON in
1) notify-send "🐏 Memory hogs" "$(ps axch -o cmd,%mem | awk '{cmd[$1]+=$2} END {for (i in cmd) print i, cmd[i]}' | sort -nrk2 | head)" ;;
2) setsid -f "$TERMINAL" -e htop ;;
-3) notify-send "🐏 Memory module" "\- Shows Memory used/total
+3) notify-send "🐏 Memory module" "\- Shows Memory temperature and used/total
- Left click to show memory hogs
-- Middle click to open htop" ;;
+- Middle click to open htop
+🌡️: Memory temperature" ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
diff --git a/ar/.local/bin/statusbar/sb-price b/ar/.local/bin/statusbar/sb-price
index 84d86b6..70703f8 100755
--- a/ar/.local/bin/statusbar/sb-price
+++ b/ar/.local/bin/statusbar/sb-price
@@ -64,4 +64,8 @@ esac
notify-send "$icon Update complete" "$name price is now
\$$(cat "$pricefile")"
-[ -f "$pricefile" ] && printf "%s%s%0.2f" "$icon" "$symb" "$(cat "$pricefile")"
+[ -f "$pricefile" ] && {
+ price=$(cat "$pricefile")
+ formatted_price=$(printf "%0.2f" "$price" | sed ':a;s/\B[0-9]\{3\}\>/,&/;ta')
+ printf "%s%s%s" "$icon" "$symb" "$formatted_price"
+}