diff options
author | Michael Hunteman <michael@huntm.net> | 2023-07-09 13:59:52 -0500 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2023-07-09 13:59:52 -0500 |
commit | afcd512b09768a7443c22862b5797f83b49eb8e0 (patch) | |
tree | 87628e1a6780e4e92806a32273e1fc0e883c0035 | |
parent | 053652d417baa11ebf37f8780b9c9a8702c68edd (diff) |
status-bar: remove volume
-rwxr-xr-x | bin/status-bar | 3 |
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 |