7 lines
133 B
Bash
7 lines
133 B
Bash
|
#!/bin/sh
|
||
|
# candybar - a stupidly simple statusbar written in shell
|
||
|
|
||
|
export bar=" "
|
||
|
. "$HOME/.config/candybar/config.sh"
|
||
|
echo "$bar"
|