summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-07-09 13:59:52 -0500
committerMichael Hunteman <michael@huntm.net>2023-07-09 13:59:52 -0500
commitafcd512b09768a7443c22862b5797f83b49eb8e0 (patch)
tree87628e1a6780e4e92806a32273e1fc0e883c0035 /bin
parent053652d417baa11ebf37f8780b9c9a8702c68edd (diff)
status-bar: remove volume
Diffstat (limited to 'bin')
-rwxr-xr-xbin/status-bar3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/status-bar b/bin/status-bar
index 24a8fe9..d222d64 100755
--- a/bin/status-bar
+++ b/bin/status-bar
@@ -1,8 +1,7 @@
#!/bin/sh
while true
do
- volume="🔊 $(pamixer --get-volume)"
date=$(date +"%a %m-%d %H:%M")
- printf "$volume $date"
+ printf "$date"
sleep 1
done