6 lines
147 B
Bash
Executable File
6 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# a simple wrapper for inserting xmobar stuff
|
|
IFS=" " read -r -a parts <<< "$(status-bat)"
|
|
echo "<fn=1>${parts[0]} </fn> ${parts[1]}"
|