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