diff options
author | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-21 19:20:09 +0100 |
---|---|---|
committer | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-21 19:20:09 +0100 |
commit | 858149f3aba1b99c3d554b1885fb4c3a85b21860 (patch) | |
tree | b0833235c92c83ec0c1a33acfec2a17324f72719 /dwmbar | |
parent | a3733553dac7f11a309d7bce150d05621178dc94 (diff) |
Added main script and rc file. Organised Todo list.
Diffstat (limited to 'dwmbar')
-rwxr-xr-x | dwmbar | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!/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" + +} + +xsetroot -name "$(exec $RC_LOCATION)" |