aboutsummaryrefslogtreecommitdiff
path: root/dwmbar
blob: a4818b64eaa8b139c7fa6e2e82c69ce8bb800bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
VERSION="0.0.1"

RC_LOCATION="./dwmbarrc"

if [[ -f $DEFAULT_RC_LOCATION ]]; then
	>&2 echo "No dwmbarrc found."
	exit 1
fi

print_help(){
echo "dwmbar $VERSION"

}

while :; do
	xsetroot -name "$(exec $RC_LOCATION)"
done