diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-10-09 09:50:40 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-10-09 09:50:40 -0400 |
commit | d7411594c0ca071f08da108f544902f03e2e413d (patch) | |
tree | 6d9d95e837f22112c0fe251f7898c2520847cbf3 /i3blocks-uptime.sh | |
parent | f015761d39ac3f0b191d804e2ce05300a4aaf500 (diff) | |
download | scripts-d7411594c0ca071f08da108f544902f03e2e413d.tar.xz scripts-d7411594c0ca071f08da108f544902f03e2e413d.zip |
fixed uptime and network scripts, added transcode-screencast
Diffstat (limited to 'i3blocks-uptime.sh')
-rwxr-xr-x | i3blocks-uptime.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i3blocks-uptime.sh b/i3blocks-uptime.sh index 515f056..778b71f 100755 --- a/i3blocks-uptime.sh +++ b/i3blocks-uptime.sh @@ -1,4 +1,4 @@ #!/bin/sh icon= -printf "$icon%s\n" "$(uptime -p | cut -d, -f1,2)" +printf "$icon%s\n" "$(uptime | grep -o 'up[^,]*' )" |