summaryrefslogtreecommitdiffstats
path: root/hm/yambar/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'hm/yambar/scripts')
-rwxr-xr-xhm/yambar/scripts/disk24
-rwxr-xr-xhm/yambar/scripts/grades-average17
-rwxr-xr-xhm/yambar/scripts/network49
-rwxr-xr-xhm/yambar/scripts/sound-volume22
4 files changed, 0 insertions, 112 deletions
diff --git a/hm/yambar/scripts/disk b/hm/yambar/scripts/disk
deleted file mode 100755
index dad41fe..0000000
--- a/hm/yambar/scripts/disk
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-# . ~/.local/lib/shell/lib
-. %SHELL_LIBRARY_PATH
-
-# Main loop
-while true; do
- # vars
- used_space=$(btrfs filesystem usage /srv 2> /dev/null | awk '{if ( /Used:/ ) { print $2 } } ' | head -n1)
- all_space=$(btrfs filesystem usage /srv 2> /dev/null | awk '{if ( /Device size:/ ) { print $3 } } ' | head -n1 | tr -d "GiB")
-
-
- # Check space available (4) and percentage used (5)
- spaceperc=$(echo "$(echo "$used_space" | tr -d "GiB" )" "$all_space" | awk '{div=$1/$2;div *= 100; printf"%2d%%\n",div }')
-
- echo "diskspace|string|$used_space"
- echo "diskperc|string|$spaceperc"
- echo ""
- sleep 1
-done
-
-if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
-# vim: ft=sh
diff --git a/hm/yambar/scripts/grades-average b/hm/yambar/scripts/grades-average
deleted file mode 100755
index 98e0685..0000000
--- a/hm/yambar/scripts/grades-average
+++ /dev/null
@@ -1,17 +0,0 @@
-#! /usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-# . ~/.local/lib/shell/lib
-. %SHELL_LIBRARY_PATH
-
-while true; do
- grade=$(grades list average | awk '{print $2}');
-
- echo "grade|string|$grade";
- echo "";
-
- sleep 1;
-done
-
-if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
-# vim: ft=sh
diff --git a/hm/yambar/scripts/network b/hm/yambar/scripts/network
deleted file mode 100755
index 45c164d..0000000
--- a/hm/yambar/scripts/network
+++ /dev/null
@@ -1,49 +0,0 @@
-#! /usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-# . ~/.local/lib/shell/lib
-. %SHELL_LIBRARY_PATH
-
-retest=120
-retest_if_con_fails=10
-backend=nmcli
-
-case "$backend" in
- "nmcli") # Test for connectivity with nmcli
- while true; do
- connection_status=$(nmcli networking connectivity)
- if [ "$connection_status" = "full" ]; then
- echo "internet|string|Connected"
- echo ""
- sleep $retest
- else
- echo "internet|string|Disconnected"
- echo ""
- sleep $retest_if_con_fails
- fi
- done
- ;;
- "ping") # Test for connectivity with ping
- ip_address='8.8.8.8'
- ping_number=3
-
- while true; do
-
- ping_result=$(mktmp)
- ping $ip_address -c $ping_number -q | awk 'BEGIN {FS="/"} END {print $5}' > $ping_result
-
- if [ "$(cat $ping_result | wc -l)" -eq 0 ]; then
- echo "med|string|No connection"
- echo ""
- sleep $retest_if_con_fails
- else
- echo "med|string|$(cat $ping_result) ms"
- echo ""
- sleep $retest
- fi
- done
- ;;
-esac
-
-if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
-# vim: ft=sh
diff --git a/hm/yambar/scripts/sound-volume b/hm/yambar/scripts/sound-volume
deleted file mode 100755
index 8a9cf0d..0000000
--- a/hm/yambar/scripts/sound-volume
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-# . ~/.local/lib/shell/lib
-. %SHELL_LIBRARY_PATH
-
-while true; do
- volume=$(pactl get-sink-volume 0 | awk 'BEGIN { FS="/" } {gsub("%","",$2); gsub(" ","",$2)} {printf $2}')
-
- if [ "$volume" -eq 0 ]; then
- echo "muted|bool|true"
- else
- echo "volume|string|$volume"
- echo "muted|bool|false"
- fi
- echo ""
-
- sleep 1;
-done
-
-if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
-# vim: ft=sh