diff options
author | Soispha <soispha@vhack.eu> | 2024-01-13 22:04:00 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-13 22:04:00 +0100 |
commit | fae6e6a0458c848fb44964023e0cb0e10b6cb1ba (patch) | |
tree | ef33ed778ad7df7ef67e89c6b32657604cd3646c /hm/soispha/conf/yambar/scripts | |
parent | docs(hm/pkgs/scrs/neorg/utils): Fix typo in comment (diff) | |
download | nixos-config-fae6e6a0458c848fb44964023e0cb0e10b6cb1ba.zip |
build(treewide): Update shell library
Diffstat (limited to 'hm/soispha/conf/yambar/scripts')
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/disk | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/grades-average | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/mpd_song_name | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/network | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/sound-volume | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/hm/soispha/conf/yambar/scripts/disk b/hm/soispha/conf/yambar/scripts/disk index a403d05c..a9d74167 100755 --- a/hm/soispha/conf/yambar/scripts/disk +++ b/hm/soispha/conf/yambar/scripts/disk @@ -1,7 +1,7 @@ #! /usr/bin/env dash # shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.0.11" . %SHELL_LIBRARY_PATH +SHELL_LIBRARY_VERSION="2.0.12" . %SHELL_LIBRARY_PATH # Main loop while true; do diff --git a/hm/soispha/conf/yambar/scripts/grades-average b/hm/soispha/conf/yambar/scripts/grades-average index f45af513..a805a504 100755 --- a/hm/soispha/conf/yambar/scripts/grades-average +++ b/hm/soispha/conf/yambar/scripts/grades-average @@ -1,7 +1,7 @@ #! /usr/bin/env dash # shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.0.11" . %SHELL_LIBRARY_PATH +SHELL_LIBRARY_VERSION="2.0.12" . %SHELL_LIBRARY_PATH while true; do grade="$(grades list average | awk '{print $2}')"; diff --git a/hm/soispha/conf/yambar/scripts/mpd_song_name b/hm/soispha/conf/yambar/scripts/mpd_song_name index 8d910e39..de2dff35 100755 --- a/hm/soispha/conf/yambar/scripts/mpd_song_name +++ b/hm/soispha/conf/yambar/scripts/mpd_song_name @@ -1,7 +1,7 @@ #!/usr/bin/env dash # shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.0.11" . %SHELL_LIBRARY_PATH +SHELL_LIBRARY_VERSION="2.0.12" . %SHELL_LIBRARY_PATH while true; do diff --git a/hm/soispha/conf/yambar/scripts/network b/hm/soispha/conf/yambar/scripts/network index f9cae29b..08de91ea 100755 --- a/hm/soispha/conf/yambar/scripts/network +++ b/hm/soispha/conf/yambar/scripts/network @@ -1,7 +1,7 @@ #! /usr/bin/env dash # shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.0.11" . %SHELL_LIBRARY_PATH +SHELL_LIBRARY_VERSION="2.0.12" . %SHELL_LIBRARY_PATH retest=120 retest_if_con_fails=10 diff --git a/hm/soispha/conf/yambar/scripts/sound-volume b/hm/soispha/conf/yambar/scripts/sound-volume index b7bb66b4..1e10a8a8 100755 --- a/hm/soispha/conf/yambar/scripts/sound-volume +++ b/hm/soispha/conf/yambar/scripts/sound-volume @@ -1,7 +1,7 @@ #! /usr/bin/env dash # shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.0.11" . %SHELL_LIBRARY_PATH +SHELL_LIBRARY_VERSION="2.0.12" . %SHELL_LIBRARY_PATH while true; do volume="$(pactl get-sink-volume 0 | awk 'BEGIN { FS="/" } {gsub("%","",$2); gsub(" ","",$2)} {printf $2}')" |