summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-05-03 16:14:39 -0500
committerMichael Hunteman <michael@huntm.net>2023-07-08 18:48:54 -0500
commita9fbab3710fce773c3360bf556901f691fd6e0c9 (patch)
treee2961c9adb70e9e23b78848a58eda1da238e0efe /bin
parent5dd596aa0ea5aba19a5f4c57edaaed7c04403558 (diff)
Add binaries
Diffstat (limited to 'bin')
-rwxr-xr-xbin/promptbin0 -> 405624 bytes
-rwxr-xr-xbin/status-bar8
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/prompt b/bin/prompt
new file mode 100755
index 0000000..9931397
--- /dev/null
+++ b/bin/prompt
Binary files differ
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