diff options
author | Michael Hunteman <michael@huntm.net> | 2023-05-03 16:14:39 -0500 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2023-07-08 18:48:54 -0500 |
commit | a9fbab3710fce773c3360bf556901f691fd6e0c9 (patch) | |
tree | e2961c9adb70e9e23b78848a58eda1da238e0efe /bin/status-bar | |
parent | 5dd596aa0ea5aba19a5f4c57edaaed7c04403558 (diff) |
Add binaries
Diffstat (limited to 'bin/status-bar')
-rwxr-xr-x | bin/status-bar | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/status-bar b/bin/status-bar new file mode 100755 index 0000000..24a8fe9 --- /dev/null +++ b/bin/status-bar @@ -0,0 +1,8 @@ +#!/bin/sh +while true +do + volume="🔊 $(pamixer --get-volume)" + date=$(date +"%a %m-%d %H:%M") + printf "$volume $date" + sleep 1 +done |