mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
18 lines
259 B
Bash
Executable file
18 lines
259 B
Bash
Executable file
#!/bin/bash
|
|
VERSION="0.0.1"
|
|
|
|
RC_LOCATION="/home/$USER/.config/dwmbar/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
|