aboutsummaryrefslogtreecommitdiff
path: root/dwmbar
blob: 195bd31d856ea0e6d062132e5bf5629458afb9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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"

}

xsetroot -name "$(exec $RC_LOCATION)"